Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
switch back to demo
Browse files- .gitignore +2 -0
- scripts/create_request_file.py +1 -1
.gitignore
CHANGED
@@ -5,6 +5,7 @@ __pycache__/
|
|
5 |
.ipynb_checkpoints
|
6 |
*ipynb
|
7 |
.vscode/
|
|
|
8 |
|
9 |
gpt_4_evals/
|
10 |
human_evals/
|
@@ -12,4 +13,5 @@ eval-queue/
|
|
12 |
eval-results/
|
13 |
auto_evals/
|
14 |
|
|
|
15 |
src/assets/model_counts.html
|
|
|
5 |
.ipynb_checkpoints
|
6 |
*ipynb
|
7 |
.vscode/
|
8 |
+
.idea/
|
9 |
|
10 |
gpt_4_evals/
|
11 |
human_evals/
|
|
|
13 |
eval-results/
|
14 |
auto_evals/
|
15 |
|
16 |
+
|
17 |
src/assets/model_counts.html
|
scripts/create_request_file.py
CHANGED
@@ -9,7 +9,7 @@ from colorama import Fore
|
|
9 |
from huggingface_hub import HfApi, snapshot_download
|
10 |
|
11 |
EVAL_REQUESTS_PATH = "eval-queue"
|
12 |
-
QUEUE_REPO = "
|
13 |
|
14 |
precisions = ("float16", "bfloat16", "8bit (LLM.int8)", "4bit (QLoRA / FP4)", "GPTQ")
|
15 |
model_types = ("pretrained", "fine-tuned", "RL-tuned", "instruction-tuned")
|
|
|
9 |
from huggingface_hub import HfApi, snapshot_download
|
10 |
|
11 |
EVAL_REQUESTS_PATH = "eval-queue"
|
12 |
+
QUEUE_REPO = "demo-leaderboard/requests"
|
13 |
|
14 |
precisions = ("float16", "bfloat16", "8bit (LLM.int8)", "4bit (QLoRA / FP4)", "GPTQ")
|
15 |
model_types = ("pretrained", "fine-tuned", "RL-tuned", "instruction-tuned")
|