Commit
·
9054c5c
1
Parent(s):
a265a84
Remove model_type from submission
Browse files
backend/app/api/endpoints/models.py
CHANGED
@@ -64,7 +64,6 @@ async def submit_model(
|
|
64 |
"User": user_id,
|
65 |
"Base_Model": model_data.get("base_model"),
|
66 |
"Precision": model_data.get("precision"),
|
67 |
-
"Model_Type": model_data.get("model_type"),
|
68 |
}
|
69 |
for line in LogFormatter.tree(submission_info, "Submission Details"):
|
70 |
logger.info(line)
|
|
|
64 |
"User": user_id,
|
65 |
"Base_Model": model_data.get("base_model"),
|
66 |
"Precision": model_data.get("precision"),
|
|
|
67 |
}
|
68 |
for line in LogFormatter.tree(submission_info, "Submission Details"):
|
69 |
logger.info(line)
|