ryaalbr commited on
Commit
1dd37a0
·
verified ·
1 Parent(s): 1a932d7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -85,7 +85,7 @@ with warnings.catch_warnings():
85
  with open(emb_filename, 'rb') as emb:
86
  id2url, img_names, img_emb = pickle.load(emb)
87
  print(img_names[:10])
88
- print(id2url.keys()[:10])
89
 
90
  height = 256 # height for resizing images
91
 
 
85
  with open(emb_filename, 'rb') as emb:
86
  id2url, img_names, img_emb = pickle.load(emb)
87
  print(img_names[:10])
88
+ print(list(id2url.keys())[:10])
89
 
90
  height = 256 # height for resizing images
91