Spaces:
Runtime error
Runtime error
minhopark-neubla
commited on
Commit
•
b24d491
1
Parent(s):
5f5b833
Add print to debug
Browse files
app.py
CHANGED
@@ -50,7 +50,8 @@ def init_space():
|
|
50 |
snapshot_download(
|
51 |
repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
|
52 |
)
|
53 |
-
except Exception:
|
|
|
54 |
restart_space()
|
55 |
|
56 |
raw_data, original_df = get_leaderboard_df(
|
|
|
50 |
snapshot_download(
|
51 |
repo_id=RESULTS_REPO, local_dir=EVAL_RESULTS_PATH, repo_type="dataset", tqdm_class=None, etag_timeout=30
|
52 |
)
|
53 |
+
except Exception as e:
|
54 |
+
print(e)
|
55 |
restart_space()
|
56 |
|
57 |
raw_data, original_df = get_leaderboard_df(
|