Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Commit
Β·
155aef4
1
Parent(s):
395f537
Fix typo on ModelType
Browse files- src/display/utils.py +1 -1
src/display/utils.py
CHANGED
|
@@ -179,7 +179,7 @@ class ModelType(Enum):
|
|
| 179 |
if "fine-tuned" in type or "πΆ" in type:
|
| 180 |
return ModelType.FT
|
| 181 |
if "language" in type or "π" in type:
|
| 182 |
-
return ModelType.
|
| 183 |
if "pretrained" in type or "π’" in type:
|
| 184 |
return ModelType.PT
|
| 185 |
if any([k in type for k in ["instruction-tuned", "RL-tuned", "chat", "π¦", "β", "π¬"]]):
|
|
|
|
| 179 |
if "fine-tuned" in type or "πΆ" in type:
|
| 180 |
return ModelType.FT
|
| 181 |
if "language" in type or "π" in type:
|
| 182 |
+
return ModelType.LA
|
| 183 |
if "pretrained" in type or "π’" in type:
|
| 184 |
return ModelType.PT
|
| 185 |
if any([k in type for k in ["instruction-tuned", "RL-tuned", "chat", "π¦", "β", "π¬"]]):
|