zeleznyt commited on
Commit
d9d8565
·
verified ·
1 Parent(s): 9ecd586

Update script.py

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