farrosalferro24 commited on
Commit
0b62128
1 Parent(s): d079a66

Update script.py

Browse files
Files changed (1) hide show
  1. script.py +1 -1
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.image_path)
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