Skip to content

Commit

Permalink
Fixed reference to renamed method.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnotherSamWilson committed Jul 28, 2024
1 parent efdf7ac commit 5514ffd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_imputed_accuracy.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def get_categorical_performance(kernel: mf.ImputationKernel, variables, iris):
cand = kernel._make_label(col, seed=model.params["seed"])
orig = iris.loc[ind, col]
imps = kernel[col, iterations, 0]
bf = kernel.get_bachelor_features(col)
bf = kernel._get_bachelor_features(col)
preds = model.predict(bf)
rocs[col] = roc_auc_score(orig, preds, multi_class="ovr", average="macro")
accs[col] = (imps == orig).mean()
Expand Down

0 comments on commit 5514ffd

Please sign in to comment.