Spaces:
Runtime error
Runtime error
Commit
•
e4ab31c
1
Parent(s):
9d6aecc
Update src/display/about.py
Browse files- src/display/about.py +3 -3
src/display/about.py
CHANGED
@@ -14,8 +14,8 @@ Other cool leaderboards:
|
|
14 |
"""
|
15 |
|
16 |
icons = f"""
|
17 |
-
- {ModelType.PT.to_str(" : ")} model: new, base models, trained on a given corpora
|
18 |
-
- {ModelType.CPT.to_str(" : ")} model: new, base models, continuously trained on
|
19 |
- {ModelType.FT.to_str(" : ")} model: pretrained models finetuned on more data
|
20 |
- {ModelType.chat.to_str(" : ")} model: chat like fine-tunes, either using IFT (datasets of task instruction), RLHF or DPO (changing the model loss a bit with an added policy), etc
|
21 |
- {ModelType.merges.to_str(" : ")} model: merges or MoErges, models which have been merged or fused without additional fine-tuning.
|
@@ -94,7 +94,7 @@ FAQ_TEXT = """
|
|
94 |
|
95 |
## SUBMISSIONS
|
96 |
My model requires `trust_remote_code=True`, can I submit it?
|
97 |
-
- *We only support models that have been integrated in a stable version of the `transformers` library for automatic submission, as we don't want to run possibly
|
98 |
|
99 |
What about models of type X?
|
100 |
- *We only support models that have been integrated in a stable version of the `transformers` library for automatic submission.*
|
|
|
14 |
"""
|
15 |
|
16 |
icons = f"""
|
17 |
+
- {ModelType.PT.to_str(" : ")} model: new, base models, trained on a given text corpora using masked modelling
|
18 |
+
- {ModelType.CPT.to_str(" : ")} model: new, base models, continuously trained on further corpus (which may include IFT/chat data) using masked modelling
|
19 |
- {ModelType.FT.to_str(" : ")} model: pretrained models finetuned on more data
|
20 |
- {ModelType.chat.to_str(" : ")} model: chat like fine-tunes, either using IFT (datasets of task instruction), RLHF or DPO (changing the model loss a bit with an added policy), etc
|
21 |
- {ModelType.merges.to_str(" : ")} model: merges or MoErges, models which have been merged or fused without additional fine-tuning.
|
|
|
94 |
|
95 |
## SUBMISSIONS
|
96 |
My model requires `trust_remote_code=True`, can I submit it?
|
97 |
+
- *We only support models that have been integrated in a stable version of the `transformers` library for automatic submission, as we don't want to run possibly unsafe code on our cluster.*
|
98 |
|
99 |
What about models of type X?
|
100 |
- *We only support models that have been integrated in a stable version of the `transformers` library for automatic submission.*
|