Skip to content

Commit

Permalink
iconic comma error
Browse files Browse the repository at this point in the history
  • Loading branch information
joel99 committed Apr 3, 2024
1 parent 34d9067 commit 4adb60d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions falcon_challenge/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
'S10_set_2',
'S11_set_1',
'S11_set_2',
'S12_set_1'
'S12_set_2'
'S12_set_1',
'S12_set_2',
],
},
'm1': {
Expand Down Expand Up @@ -207,7 +207,7 @@ def evaluate(
raise ValueError(f"Failed to compute metrics for {datasplit} {in_or_out}: {e}")
for k in metrics:
split_result[f'{HELDIN_OR_OUT_MAP[in_or_out]} {k}'] = metrics[k]
result.append({datasplit: split_result})
result.append({f'{phase_codename}_split_{datasplit}': split_result})

print(f"Returning result from phase: {phase_codename}: {result}")
# Out struct according to https://evalai.readthedocs.io/en/latest/evaluation_scripts.html
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='falcon_challenge',
version='0.2.5',
version='0.2.6',

url='https://github.com/snel-repo/stability-benchmark',
author='Joel Ye',
Expand Down

0 comments on commit 4adb60d

Please sign in to comment.