Skip to content

Commit

Permalink
remove self in task
Browse files Browse the repository at this point in the history
  • Loading branch information
camillebrianceau committed Sep 3, 2024
1 parent 8bdca0f commit 94121f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion clinicadl/trainer/task_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,9 @@ def test(
data,
outputs.float(),
)
row_df = pd.DataFrame(row, columns=self.columns)
row_df = pd.DataFrame(
row, columns=columns(network_task, mode, n_classes)
)
results_df = pd.concat([results_df, row_df])

del outputs, loss_dict
Expand Down

0 comments on commit 94121f1

Please sign in to comment.