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