Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Fixed counters
Browse files- src/populate.py +1 -1
src/populate.py
CHANGED
@@ -28,7 +28,7 @@ def get_evaluation_queue_df(save_path: str, cols: list) -> list[pd.DataFrame]:
|
|
28 |
for entry in entries:
|
29 |
if ".json" in entry:
|
30 |
file_path = os.path.join(save_path, entry)
|
31 |
-
if '
|
32 |
with open(file_path) as fp:
|
33 |
data = json.load(fp)
|
34 |
|
|
|
28 |
for entry in entries:
|
29 |
if ".json" in entry:
|
30 |
file_path = os.path.join(save_path, entry)
|
31 |
+
if 'counters/' in file_path: continue
|
32 |
with open(file_path) as fp:
|
33 |
data = json.load(fp)
|
34 |
|