Clémentine commited on
Commit
65687fa
1 Parent(s): e077c7c

fix - arena call

Browse files
Files changed (1) hide show
  1. src/leaderboards/get_from_hub.py +1 -1
src/leaderboards/get_from_hub.py CHANGED
@@ -15,7 +15,7 @@ def group_all_tags(input_tags: list[str]) -> dict:
15
  output_tags = defaultdict(list)
16
  for tag in input_tags:
17
  if tag == "arena":
18
- output_tags.append("judge:humans")
19
  continue
20
 
21
  try:
 
15
  output_tags = defaultdict(list)
16
  for tag in input_tags:
17
  if tag == "arena":
18
+ output_tags["judge"].append("humans")
19
  continue
20
 
21
  try: