farrosalferro24
commited on
Commit
•
0b62128
1
Parent(s):
d079a66
Update script.py
Browse files
script.py
CHANGED
@@ -71,7 +71,7 @@ def make_submission(test_metadata, model_path, model_name, output_csv_path="./su
|
|
71 |
predictions = []
|
72 |
|
73 |
for _, row in tqdm(test_metadata.iterrows(), total=len(test_metadata)):
|
74 |
-
image_path = os.path.join(images_root_path, row.
|
75 |
|
76 |
test_image = Image.open(image_path).convert("RGB")
|
77 |
|
|
|
71 |
predictions = []
|
72 |
|
73 |
for _, row in tqdm(test_metadata.iterrows(), total=len(test_metadata)):
|
74 |
+
image_path = os.path.join(images_root_path, row.filename)
|
75 |
|
76 |
test_image = Image.open(image_path).convert("RGB")
|
77 |
|