add upload
Browse files- src/submission/submit.py +3 -1
src/submission/submit.py
CHANGED
@@ -94,7 +94,9 @@ def add_new_eval(
|
|
94 |
modelcard_OK, error_msg = check_model_card(model)
|
95 |
if not modelcard_OK:
|
96 |
return styled_error(error_msg)
|
97 |
-
tags = get_model_tags(model_card, model)
|
|
|
|
|
98 |
|
99 |
likes = model_info.likes
|
100 |
else:
|
|
|
94 |
modelcard_OK, error_msg = check_model_card(model)
|
95 |
if not modelcard_OK:
|
96 |
return styled_error(error_msg)
|
97 |
+
#tags = get_model_tags(model_card, model)
|
98 |
+
# TODO: tags
|
99 |
+
tags = []
|
100 |
|
101 |
likes = model_info.likes
|
102 |
else:
|