update name.
Browse files
src/display/about.py
CHANGED
|
@@ -183,7 +183,12 @@ CITATION_BUTTON_TEXT = r"""
|
|
| 183 |
@software{neural-compressor,
|
| 184 |
title = Intel® Neural Compressor,
|
| 185 |
publisher = {Intel},
|
| 186 |
-
url = {https://github.com/intel/neural-compressor/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
}
|
| 188 |
@misc{open-llm-leaderboard,
|
| 189 |
author = {Edward Beeching and Clémentine Fourrier and Nathan Habib and Sheon Han and Nathan Lambert and Nazneen Rajani and Omar Sanseviero and Lewis Tunstall and Thomas Wolf},
|
|
|
|
| 183 |
@software{neural-compressor,
|
| 184 |
title = Intel® Neural Compressor,
|
| 185 |
publisher = {Intel},
|
| 186 |
+
url = {https://github.com/intel/neural-compressor/}
|
| 187 |
+
}
|
| 188 |
+
@software{intel-extension-for-transformers,
|
| 189 |
+
title = Intel® Extension for Transformers,
|
| 190 |
+
publisher = {Intel},
|
| 191 |
+
url = {https://github.com/intel/intel-extension-for-transformers}
|
| 192 |
}
|
| 193 |
@misc{open-llm-leaderboard,
|
| 194 |
author = {Edward Beeching and Clémentine Fourrier and Nathan Habib and Sheon Han and Nathan Lambert and Nazneen Rajani and Omar Sanseviero and Lewis Tunstall and Thomas Wolf},
|
src/leaderboard/read_evals.py
CHANGED
|
@@ -72,7 +72,8 @@ class EvalResult:
|
|
| 72 |
|
| 73 |
if local:
|
| 74 |
org_and_model = config.get("model_name").split("/")
|
| 75 |
-
|
|
|
|
| 76 |
quant_type = QuantType.autoround
|
| 77 |
|
| 78 |
if len(org_and_model) == 1:
|
|
|
|
| 72 |
|
| 73 |
if local:
|
| 74 |
org_and_model = config.get("model_name").split("/")
|
| 75 |
+
# temporary "local"
|
| 76 |
+
org_and_model = ["Intel", org_and_model[-1]]
|
| 77 |
quant_type = QuantType.autoround
|
| 78 |
|
| 79 |
if len(org_and_model) == 1:
|
src/submission/check_validity.py
CHANGED
|
@@ -196,7 +196,7 @@ def already_submitted_models(requested_models_dir: str) -> set[str]:
|
|
| 196 |
organisation, _ = info["model"].split("/")
|
| 197 |
except:
|
| 198 |
print(info["model"])
|
| 199 |
-
organisation = "local"
|
| 200 |
users_to_submission_dates[organisation].append(info["submitted_time"])
|
| 201 |
|
| 202 |
return set(file_names), users_to_submission_dates
|
|
|
|
| 196 |
organisation, _ = info["model"].split("/")
|
| 197 |
except:
|
| 198 |
print(info["model"])
|
| 199 |
+
organisation = "Intel" # temporary "local"
|
| 200 |
users_to_submission_dates[organisation].append(info["submitted_time"])
|
| 201 |
|
| 202 |
return set(file_names), users_to_submission_dates
|