Skip to content

Commit

Permalink
just display important params
Browse files Browse the repository at this point in the history
  • Loading branch information
derpyplops committed Aug 22, 2023
1 parent 10b8973 commit 10e4b9b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions comp.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
# reinsert the non-float columns at the front
df_diff = pd.concat([df.select_dtypes(include=["object", "int"]), df_diff], axis=1)

# only include the columns dataset layer ensembling auroc_estimate acc_estimate
df_diff = df_diff.filter(
["dataset", "layer", "ensembling", "auroc_estimate", "acc_estimate"]
)


import rich

rich.print(df_diff)
Expand Down

0 comments on commit 10e4b9b

Please sign in to comment.