Spaces:
Runtime error
Runtime error
fix: repo names
Browse files- .gitignore +1 -0
- src/envs.py +4 -4
.gitignore
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 1 |
auto_evals/
|
| 2 |
venv/
|
|
|
|
| 3 |
__pycache__/
|
| 4 |
.env
|
| 5 |
.ipynb_checkpoints
|
|
|
|
| 1 |
auto_evals/
|
| 2 |
venv/
|
| 3 |
+
.venv/
|
| 4 |
__pycache__/
|
| 5 |
.env
|
| 6 |
.ipynb_checkpoints
|
src/envs.py
CHANGED
|
@@ -6,12 +6,12 @@ from huggingface_hub import HfApi
|
|
| 6 |
# ----------------------------------
|
| 7 |
TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
|
| 8 |
|
| 9 |
-
OWNER = "KuuwangE
|
| 10 |
# ----------------------------------
|
| 11 |
|
| 12 |
-
REPO_ID = f"{OWNER}/
|
| 13 |
-
QUEUE_REPO = f"{OWNER}/requests"
|
| 14 |
-
RESULTS_REPO = f"{OWNER}/
|
| 15 |
|
| 16 |
# If you setup a cache later, just change HF_HOME
|
| 17 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|
|
|
|
| 6 |
# ----------------------------------
|
| 7 |
TOKEN = os.environ.get("HF_TOKEN") # A read/write token for your org
|
| 8 |
|
| 9 |
+
OWNER = "KuuwangE" # Change to your org - don't forget to create a results and request dataset, with the correct format!
|
| 10 |
# ----------------------------------
|
| 11 |
|
| 12 |
+
REPO_ID = f"{OWNER}/hack-a-thon"
|
| 13 |
+
QUEUE_REPO = f"{OWNER}/hack-a-thon-requests"
|
| 14 |
+
RESULTS_REPO = f"{OWNER}/hack-a-thon-result"
|
| 15 |
|
| 16 |
# If you setup a cache later, just change HF_HOME
|
| 17 |
CACHE_PATH=os.getenv("HF_HOME", ".")
|