Spaces:
Sleeping
Sleeping
Commit
•
4879b93
1
Parent(s):
6eb8bfd
Update app.py
Browse files
app.py
CHANGED
@@ -26,7 +26,7 @@ from src.display.utils import (
|
|
26 |
WeightType,
|
27 |
Precision
|
28 |
)
|
29 |
-
from src.envs import API, EVAL_REQUESTS_PATH, EVAL_RESULTS_PATH, QUEUE_REPO, REPO_ID, RESULTS_REPO
|
30 |
from src.populate import get_evaluation_queue_df, get_leaderboard_df
|
31 |
from src.submission.submit import add_new_eval
|
32 |
|
@@ -42,14 +42,14 @@ def launch_backend():
|
|
42 |
try:
|
43 |
print(EVAL_REQUESTS_PATH)
|
44 |
snapshot_download(
|
45 |
-
repo_id=QUEUE_REPO, local_dir=EVAL_REQUESTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
|
46 |
)
|
47 |
except Exception:
|
48 |
restart_space()
|
49 |
try:
|
50 |
print(EVAL_RESULTS_PATH)
|
51 |
snapshot_download(
|
52 |
-
repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
|
53 |
)
|
54 |
except Exception:
|
55 |
restart_space()
|
|
|
26 |
WeightType,
|
27 |
Precision
|
28 |
)
|
29 |
+
from src.envs import API, EVAL_REQUESTS_PATH, EVAL_RESULTS_PATH, QUEUE_REPO, REPO_ID, RESULTS_REPO, TOKEN
|
30 |
from src.populate import get_evaluation_queue_df, get_leaderboard_df
|
31 |
from src.submission.submit import add_new_eval
|
32 |
|
|
|
42 |
try:
|
43 |
print(EVAL_REQUESTS_PATH)
|
44 |
snapshot_download(
|
45 |
+
repo_id=QUEUE_REPO, local_dir=EVAL_REQUESTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30, token=TOKEN
|
46 |
)
|
47 |
except Exception:
|
48 |
restart_space()
|
49 |
try:
|
50 |
print(EVAL_RESULTS_PATH)
|
51 |
snapshot_download(
|
52 |
+
repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30, token=TOKEN
|
53 |
)
|
54 |
except Exception:
|
55 |
restart_space()
|