lixuejing
commited on
Commit
·
2820e0b
1
Parent(s):
8b9a45a
update repoid
Browse files- src/envs.py +4 -4
src/envs.py
CHANGED
@@ -7,11 +7,11 @@ from huggingface_hub import HfApi
|
|
7 |
TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
|
8 |
|
9 |
|
10 |
-
|
11 |
-
OWNER = "BAAI/open_flageval_vlm_leaderboard" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
12 |
# ----------------------------------
|
13 |
-
REPO_ID = OWNER
|
14 |
-
|
15 |
QUEUE_REPO = f"{OWNER}/requests"
|
16 |
RESULTS_REPO = f"{OWNER}/results"
|
17 |
DYNAMIC_INFO_REPO = f"{OWNER}/dynamic_model_information"
|
|
|
7 |
TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
|
8 |
|
9 |
|
10 |
+
OWNER = "demo-leaderboard-backend" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
11 |
+
#OWNER = "BAAI/open_flageval_vlm_leaderboard" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
12 |
# ----------------------------------
|
13 |
+
#REPO_ID = OWNER
|
14 |
+
REPO_ID = f"{OWNER}/leaderboard"
|
15 |
QUEUE_REPO = f"{OWNER}/requests"
|
16 |
RESULTS_REPO = f"{OWNER}/results"
|
17 |
DYNAMIC_INFO_REPO = f"{OWNER}/dynamic_model_information"
|