Skip to content

Commit

Permalink
Fix function call
Browse files Browse the repository at this point in the history
  • Loading branch information
opcode81 committed Sep 27, 2023
1 parent 3e98b09 commit c56d533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/backwardscompat/create_test_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create_regression_models_for_backward_compatibility_test(version):
eval_data = ev.eval_model(model)
eval_stats = eval_data.get_eval_stats()
print(eval_stats)
r2 = eval_stats.getR2()
r2 = eval_stats.get_r2()
persisted_data = {"R2": r2, "model": model}
dump_pickle(persisted_data, RESOURCE_PATH / "backward_compatibility" / f"regression_model_{model.get_name()}.{version}.pickle",
protocol=4)
Expand Down

0 comments on commit c56d533

Please sign in to comment.