Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
alozowski
commited on
Commit
•
0c1e1e3
1
Parent(s):
a13949e
nice submission size checker message
Browse files- src/submission/submit.py +1 -1
src/submission/submit.py
CHANGED
@@ -73,7 +73,7 @@ def add_new_eval(
|
|
73 |
# Check model size early
|
74 |
model_size = get_model_size(model_info=model_info, precision=precision)
|
75 |
if model_size > 100:
|
76 |
-
return styled_error(f"
|
77 |
|
78 |
# Check for duplicate submission
|
79 |
if f"{model}_{model_info.sha}_{precision}" in REQUESTED_MODELS:
|
|
|
73 |
# Check model size early
|
74 |
model_size = get_model_size(model_info=model_info, precision=precision)
|
75 |
if model_size > 100:
|
76 |
+
return styled_error(f"Sadly, models this big ({model_size}b parameters) cannot be evaluated automatically at the moment on our cluster")
|
77 |
|
78 |
# Check for duplicate submission
|
79 |
if f"{model}_{model_info.sha}_{precision}" in REQUESTED_MODELS:
|