Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Fix weight types
Browse files
frontend/src/pages/AddModelPage/components/ModelSubmissionForm/ModelSubmissionForm.js
CHANGED
|
@@ -26,9 +26,9 @@ import { SUBMISSION_PRECISIONS } from "../../../../pages/LeaderboardPage/compone
|
|
| 26 |
import AuthContainer from "../../../../components/shared/AuthContainer";
|
| 27 |
|
| 28 |
const WEIGHT_TYPES = [
|
| 29 |
-
{ value: "
|
| 30 |
-
{ value: "
|
| 31 |
-
{ value: "
|
| 32 |
];
|
| 33 |
|
| 34 |
const HELP_TEXTS = {
|
|
|
|
| 26 |
import AuthContainer from "../../../../components/shared/AuthContainer";
|
| 27 |
|
| 28 |
const WEIGHT_TYPES = [
|
| 29 |
+
{ value: "Original", label: "Original" },
|
| 30 |
+
{ value: "Delta", label: "Delta" },
|
| 31 |
+
{ value: "Adapter", label: "Adapter" },
|
| 32 |
];
|
| 33 |
|
| 34 |
const HELP_TEXTS = {
|