alozowski commited on
Commit
0c1e1e3
1 Parent(s): a13949e

nice submission size checker message

Browse files
Files changed (1) hide show
  1. 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"You can't submit this model, since it's too big for one node evaluation. Model size: {model_size} billion parameters")
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: