Skip to content

Commit

Permalink
Drop evaluation_id after adding merit values col
Browse files Browse the repository at this point in the history
  • Loading branch information
yngve-sk committed Nov 13, 2024
1 parent 0b99e8b commit 0606e09
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/everest/everest_storage.py
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,9 @@ def _handle_finished_batch_event(self, event: Event):
if merit_df is None:
objective_df = objective_df.drop("evaluation_id")
else:
objective_df = objective_df.join(merit_df, on="evaluation_id")
objective_df = objective_df.join(merit_df, on="evaluation_id").drop(
"evaluation_id"
)

self._dataframes.batches.append(
BatchDataFrames(
Expand Down

0 comments on commit 0606e09

Please sign in to comment.