Update script.py
Browse files
script.py
CHANGED
@@ -63,7 +63,7 @@ def make_submission(test_metadata, model_path, model_name, output_csv_path="./su
|
|
63 |
predictions = []
|
64 |
|
65 |
for _, row in tqdm(test_metadata.iterrows(), total=len(test_metadata)):
|
66 |
-
image_path = os.path.join(images_root_path, row.
|
67 |
|
68 |
test_image = Image.open(image_path).convert("RGB")
|
69 |
|
|
|
63 |
predictions = []
|
64 |
|
65 |
for _, row in tqdm(test_metadata.iterrows(), total=len(test_metadata)):
|
66 |
+
image_path = os.path.join(images_root_path, row.filename)
|
67 |
|
68 |
test_image = Image.open(image_path).convert("RGB")
|
69 |
|