Spaces:
Runtime error
Runtime error
Upload 19 files
Browse files- src/__pycache__/about.cpython-310.pyc +0 -0
- src/__pycache__/envs.cpython-310.pyc +0 -0
- src/__pycache__/populate.cpython-310.pyc +0 -0
- src/about.py +3 -2
- src/display/__pycache__/css_html_js.cpython-310.pyc +0 -0
- src/display/__pycache__/formatting.cpython-310.pyc +0 -0
- src/display/__pycache__/utils.cpython-310.pyc +0 -0
- src/envs.py +1 -1
- src/leaderboard/__pycache__/read_evals.cpython-310.pyc +0 -0
- src/submission/__pycache__/check_validity.cpython-310.pyc +0 -0
- src/submission/__pycache__/submit.cpython-310.pyc +0 -0
src/__pycache__/about.cpython-310.pyc
ADDED
|
Binary file (2.83 kB). View file
|
|
|
src/__pycache__/envs.cpython-310.pyc
ADDED
|
Binary file (674 Bytes). View file
|
|
|
src/__pycache__/populate.cpython-310.pyc
ADDED
|
Binary file (2.78 kB). View file
|
|
|
src/about.py
CHANGED
|
@@ -12,8 +12,9 @@ class Task:
|
|
| 12 |
# ---------------------------------------------------
|
| 13 |
class Tasks(Enum):
|
| 14 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
| 15 |
-
task0 = Task("
|
| 16 |
-
task1 = Task("
|
|
|
|
| 17 |
|
| 18 |
NUM_FEWSHOT = 0 # Change with your few shot
|
| 19 |
# ---------------------------------------------------
|
|
|
|
| 12 |
# ---------------------------------------------------
|
| 13 |
class Tasks(Enum):
|
| 14 |
# task_key in the json file, metric_key in the json file, name to display in the leaderboard
|
| 15 |
+
task0 = Task("mmlu_it", "acc", "MMLU_IT")
|
| 16 |
+
task1 = Task("arc_it", "acc_norm", "ARC_IT")
|
| 17 |
+
task2 = Task("hellaswag_it", "acc_norm", "HELLASWAG_IT")
|
| 18 |
|
| 19 |
NUM_FEWSHOT = 0 # Change with your few shot
|
| 20 |
# ---------------------------------------------------
|
src/display/__pycache__/css_html_js.cpython-310.pyc
ADDED
|
Binary file (1.9 kB). View file
|
|
|
src/display/__pycache__/formatting.cpython-310.pyc
ADDED
|
Binary file (1.41 kB). View file
|
|
|
src/display/__pycache__/utils.cpython-310.pyc
ADDED
|
Binary file (4.99 kB). View file
|
|
|
src/envs.py
CHANGED
|
@@ -6,7 +6,7 @@ from huggingface_hub import HfApi
|
|
| 6 |
# ----------------------------------
|
| 7 |
TOKEN = os.environ.get("TOKEN") # A read/write token for your org
|
| 8 |
|
| 9 |
-
OWNER = "
|
| 10 |
# ----------------------------------
|
| 11 |
|
| 12 |
REPO_ID = f"{OWNER}/leaderboard"
|
|
|
|
| 6 |
# ----------------------------------
|
| 7 |
TOKEN = os.environ.get("TOKEN") # A read/write token for your org
|
| 8 |
|
| 9 |
+
OWNER = "giux78" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
| 10 |
# ----------------------------------
|
| 11 |
|
| 12 |
REPO_ID = f"{OWNER}/leaderboard"
|
src/leaderboard/__pycache__/read_evals.cpython-310.pyc
ADDED
|
Binary file (6.32 kB). View file
|
|
|
src/submission/__pycache__/check_validity.cpython-310.pyc
ADDED
|
Binary file (3.84 kB). View file
|
|
|
src/submission/__pycache__/submit.cpython-310.pyc
ADDED
|
Binary file (2.83 kB). View file
|
|
|