Update app.py
Browse files
app.py
CHANGED
@@ -29,7 +29,7 @@ MODELS = [
|
|
29 |
),
|
30 |
),
|
31 |
(
|
32 |
-
'deberta-base-
|
33 |
lambda: BaseTransferLearningModel(
|
34 |
'microsoft/deberta-base',
|
35 |
[('linear', ['in', 'out']), ('softmax')],
|
@@ -39,7 +39,7 @@ MODELS = [
|
|
39 |
),
|
40 |
),
|
41 |
(
|
42 |
-
'deberta-base-
|
43 |
lambda: BaseTransferLearningModel(
|
44 |
'microsoft/deberta-base',
|
45 |
[('linear', ['in', 'out']), ('softmax')],
|
@@ -49,7 +49,7 @@ MODELS = [
|
|
49 |
),
|
50 |
),
|
51 |
(
|
52 |
-
'deberta-v3-base-
|
53 |
lambda: BaseTransferLearningModel(
|
54 |
'microsoft/deberta-v3-base',
|
55 |
[('linear', ['in', 'out']), ('softmax')],
|
@@ -59,7 +59,7 @@ MODELS = [
|
|
59 |
),
|
60 |
),
|
61 |
(
|
62 |
-
'deberta-v3-base-
|
63 |
lambda: BaseTransferLearningModel(
|
64 |
'microsoft/deberta-v3-base',
|
65 |
[('linear', ['in', 'out']), ('softmax')],
|
|
|
29 |
),
|
30 |
),
|
31 |
(
|
32 |
+
'deberta-base-model_1100',
|
33 |
lambda: BaseTransferLearningModel(
|
34 |
'microsoft/deberta-base',
|
35 |
[('linear', ['in', 'out']), ('softmax')],
|
|
|
39 |
),
|
40 |
),
|
41 |
(
|
42 |
+
'deberta-base-model_2000',
|
43 |
lambda: BaseTransferLearningModel(
|
44 |
'microsoft/deberta-base',
|
45 |
[('linear', ['in', 'out']), ('softmax')],
|
|
|
49 |
),
|
50 |
),
|
51 |
(
|
52 |
+
'deberta-v3-base-model_1700',
|
53 |
lambda: BaseTransferLearningModel(
|
54 |
'microsoft/deberta-v3-base',
|
55 |
[('linear', ['in', 'out']), ('softmax')],
|
|
|
59 |
),
|
60 |
),
|
61 |
(
|
62 |
+
'deberta-v3-base-model_2000',
|
63 |
lambda: BaseTransferLearningModel(
|
64 |
'microsoft/deberta-v3-base',
|
65 |
[('linear', ['in', 'out']), ('softmax')],
|