Update script.py
Browse files
script.py
CHANGED
@@ -61,7 +61,7 @@ for el in tqdm.tqdm(dataset_remote):
|
|
61 |
except Exception as e:
|
62 |
print(e)
|
63 |
print("failed", el["id"])
|
64 |
-
out.append(dict(id = el["id"]))
|
65 |
|
66 |
# save the final result and that's it
|
67 |
pd.DataFrame(out).to_csv("submission.csv",index = False)
|
|
|
61 |
except Exception as e:
|
62 |
print(e)
|
63 |
print("failed", el["id"])
|
64 |
+
out.append(dict(id = el["id"], pred = "none", score = None))
|
65 |
|
66 |
# save the final result and that's it
|
67 |
pd.DataFrame(out).to_csv("submission.csv",index = False)
|