Spaces:
Runtime error
Runtime error
Update create_results.py
Browse files- create_results.py +2 -2
create_results.py
CHANGED
@@ -9,8 +9,8 @@ TOKEN = os.environ.get("DEBUG")
|
|
9 |
api = HfApi(token=TOKEN)
|
10 |
|
11 |
out_dir = sys.argv[1]
|
12 |
-
all_attempts_read = open("attempts.txt", "r+").readlines()
|
13 |
-
failed_attempts_read = open("failed_attempts.txt", "r+").readlines()
|
14 |
|
15 |
# Uploading output to the results dataset.
|
16 |
api.upload_folder(
|
|
|
9 |
api = HfApi(token=TOKEN)
|
10 |
|
11 |
out_dir = sys.argv[1]
|
12 |
+
all_attempts_read = open("/app/attempts.txt", "r+").readlines()
|
13 |
+
failed_attempts_read = open("/app/failed_attempts.txt", "r+").readlines()
|
14 |
|
15 |
# Uploading output to the results dataset.
|
16 |
api.upload_folder(
|