albertvillanova HF staff commited on
Commit
22fb9eb
·
verified ·
1 Parent(s): 31903af

Hide MATH fewshot_config.samples with memory address

Browse files
Files changed (1) hide show
  1. src/results.py +3 -1
src/results.py CHANGED
@@ -85,8 +85,10 @@ def display_tab(tab, df, task, hide_std_errors=True, show_only_differences=False
85
  or (
86
  not row.startswith(f"{tab}.{task}")
87
  if task != "All"
88
- else row.startswith(f"{tab}.leaderboard_arc_challenge")
89
  )
 
 
90
  # Hide std errors
91
  or (hide_std_errors and row.endswith("_stderr,none"))
92
  # Hide non-different rows
 
85
  or (
86
  not row.startswith(f"{tab}.{task}")
87
  if task != "All"
88
+ else row.startswith(f"{tab}.leaderboard_arc_challenge") # Hide legacy ARC
89
  )
90
+ # Hide MATH fewshot_config.samples: <function list_fewshot_samples at 0x7f34d199ab90>
91
+ or (row.startswith(f"{tab}.leaderboard_math") and row.endswith("fewshot_config.samples"))
92
  # Hide std errors
93
  or (hide_std_errors and row.endswith("_stderr,none"))
94
  # Hide non-different rows