Vvaann commited on
Commit
dd8c249
·
verified ·
1 Parent(s): a2439b4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -63,7 +63,7 @@ def find_best_matches(image, mode, text):
63
  idx = best_photos[i][1]
64
  photo_id = ids[idx]
65
 
66
- photo_data = photos[photos['photo_id'] == photo_id].iloc[0]
67
 
68
  response = requests.get(photo_data['photo_image_url']+ '?w=640')
69
  img = pil.open(BytesIO(response.content))
 
63
  idx = best_photos[i][1]
64
  photo_id = ids[idx]
65
 
66
+ photo_data = data[photos['photo_id'] == photo_id].iloc[0]
67
 
68
  response = requests.get(photo_data['photo_image_url']+ '?w=640')
69
  img = pil.open(BytesIO(response.content))