Spaces:
Building
on
CPU Upgrade
Building
on
CPU Upgrade
Tom Aarsen
commited on
Commit
·
2d1dc09
1
Parent(s):
c59c56a
No longer skip all GGUF-tagged models
Browse filesWe need to be smarter with it, e.g. only skip a GGUF model if there exists a model with the same name without GGUF?
- refresh.py +0 -2
refresh.py
CHANGED
|
@@ -358,8 +358,6 @@ def get_mteb_data(
|
|
| 358 |
for model in pbar:
|
| 359 |
if model.modelId in MODELS_TO_SKIP:
|
| 360 |
continue
|
| 361 |
-
if "gguf" in model.tags:
|
| 362 |
-
continue
|
| 363 |
pbar.set_description(f"Fetching {model.modelId!r} metadata")
|
| 364 |
meta = download_or_use_cache(model.modelId)
|
| 365 |
MODEL_INFOS[model.modelId] = {"metadata": meta}
|
|
|
|
| 358 |
for model in pbar:
|
| 359 |
if model.modelId in MODELS_TO_SKIP:
|
| 360 |
continue
|
|
|
|
|
|
|
| 361 |
pbar.set_description(f"Fetching {model.modelId!r} metadata")
|
| 362 |
meta = download_or_use_cache(model.modelId)
|
| 363 |
MODEL_INFOS[model.modelId] = {"metadata": meta}
|