Dtimes commited on
Commit
93ac1b8
·
1 Parent(s): 56c73b8
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -305,8 +305,8 @@ def process_submission(name, email, description, is_published, image):
305
  leaderboard_table,
306
  f"{rank} out of {len(submissions)}",
307
  name,
308
- f"{performance:.3f}",
309
- f"{quality:.3f}",
310
  f"{np.sqrt(quality**2 + performance**2):.3f}",
311
  )
312
 
 
305
  leaderboard_table,
306
  f"{rank} out of {len(submissions)}",
307
  name,
308
+ f"{PERFORMANCE_POST_FUNC(performance):.3f}",
309
+ f"{QUALITY_POST_FUNC(quality):.3f}",
310
  f"{np.sqrt(quality**2 + performance**2):.3f}",
311
  )
312