Spaces:
Restarting
on
CPU Upgrade
Restarting
on
CPU Upgrade
change name
Browse files- src/about.py +1 -1
- src/envs.py +4 -4
src/about.py
CHANGED
@@ -37,7 +37,7 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
37 |
|
38 |
|
39 |
# Your leaderboard name
|
40 |
-
TITLE = """<h1 align="center" id="space-title">
|
41 |
|
42 |
# What does your leaderboard evaluate?
|
43 |
INTRODUCTION_TEXT = """
|
|
|
37 |
|
38 |
|
39 |
# Your leaderboard name
|
40 |
+
TITLE = """<h1 align="center" id="space-title">Open PL LLM Leaderboard</h1>"""
|
41 |
|
42 |
# What does your leaderboard evaluate?
|
43 |
INTRODUCTION_TEXT = """
|
src/envs.py
CHANGED
@@ -6,14 +6,14 @@ from huggingface_hub import HfApi
|
|
6 |
# ----------------------------------
|
7 |
TOKEN = os.environ.get("TOKEN") # A read/write token for your org
|
8 |
|
9 |
-
OWNER = "
|
10 |
DEVICE = "cpu" # "cuda:0" if you add compute
|
11 |
LIMIT = 20 # !!!! Should be None for actual evaluations!!!
|
12 |
# ----------------------------------
|
13 |
|
14 |
-
REPO_ID = f"{OWNER}/
|
15 |
-
QUEUE_REPO = f"{OWNER}/
|
16 |
-
RESULTS_REPO = f"{OWNER}/
|
17 |
|
18 |
# If you setup a cache later, just change HF_HOME
|
19 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|
|
|
6 |
# ----------------------------------
|
7 |
TOKEN = os.environ.get("TOKEN") # A read/write token for your org
|
8 |
|
9 |
+
OWNER = "enelpol" # Change to your org - don't forget to create a results and request file
|
10 |
DEVICE = "cpu" # "cuda:0" if you add compute
|
11 |
LIMIT = 20 # !!!! Should be None for actual evaluations!!!
|
12 |
# ----------------------------------
|
13 |
|
14 |
+
REPO_ID = f"{OWNER}/open_pl_llm_leaderboard"
|
15 |
+
QUEUE_REPO = f"{OWNER}/open_pl_llm_leaderboard_requests"
|
16 |
+
RESULTS_REPO = f"{OWNER}/open_pl_llm_leaderboard_results"
|
17 |
|
18 |
# If you setup a cache later, just change HF_HOME
|
19 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|