vocab = [
standardized_uri("en", term) for term in bias_examples
]
components_to_reject = frame.loc[vocab].values
// Make a modified version of the space that projects the bias vectors to 0.
// Then weight each row of that space by "applicability", the probability
After Change
vocab = [
standardized_uri("en", term) for term in bias_examples
]
components_to_reject = frame.reindex(vocab).dropna().values
// Make a modified version of the space that projects the bias vectors to 0.
// Then weight each row of that space by "applicability", the probability