Skip to content

Commit

Permalink
Added a missing end_timer
Browse files Browse the repository at this point in the history
  • Loading branch information
rcap107 committed Sep 21, 2023
1 parent a6b52d5 commit 703ba44
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/methods/evaluation.py
Original file line number Diff line number Diff line change
Expand Up @@ -420,6 +420,8 @@ def run_on_full_join(
eval_data = prepare_table_for_evaluation(merged_test)
y_test = eval_data[target_column].cast(pl.Float64)
eval_data = eval_data.drop(target_column).to_pandas()
run_logger.end_time("eval")
raw_logger.end_time("eval")

y_pred = model.predict(eval_data)

Expand Down

0 comments on commit 703ba44

Please sign in to comment.