Spaces:
Runtime error
Runtime error
fix
Browse files
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 |
|