Spaces:
Runtime error
Runtime error
Commit
·
e41abec
1
Parent(s):
2b8f89d
fix share
Browse files- app.py +2 -2
- uploads.py +1 -1
app.py
CHANGED
|
@@ -506,5 +506,5 @@ with demo:
|
|
| 506 |
scheduler = BackgroundScheduler()
|
| 507 |
scheduler.add_job(restart_space, "interval", seconds=3600)
|
| 508 |
scheduler.start()
|
| 509 |
-
demo.launch(debug=True)
|
| 510 |
-
|
|
|
|
| 506 |
scheduler = BackgroundScheduler()
|
| 507 |
scheduler.add_job(restart_space, "interval", seconds=3600)
|
| 508 |
scheduler.start()
|
| 509 |
+
# demo.launch(debug=True)
|
| 510 |
+
demo.launch(share=True)
|
uploads.py
CHANGED
|
@@ -6,7 +6,7 @@ import json
|
|
| 6 |
import pandas as pd
|
| 7 |
|
| 8 |
LEADERBOARD_PATH = "Exploration-Lab/IL-TUR-Leaderboard"
|
| 9 |
-
RESULTS_PATH = "Exploration-Lab/IL-TUR-Leaderboard-results"
|
| 10 |
api = HfApi()
|
| 11 |
TOKEN = os.environ.get("TOKEN", None)
|
| 12 |
YEAR_VERSION = "2024"
|
|
|
|
| 6 |
import pandas as pd
|
| 7 |
|
| 8 |
LEADERBOARD_PATH = "Exploration-Lab/IL-TUR-Leaderboard"
|
| 9 |
+
# RESULTS_PATH = "Exploration-Lab/IL-TUR-Leaderboard-results"
|
| 10 |
api = HfApi()
|
| 11 |
TOKEN = os.environ.get("TOKEN", None)
|
| 12 |
YEAR_VERSION = "2024"
|