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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -84,7 +84,8 @@ with warnings.catch_warnings():
84
  warnings.filterwarnings("ignore", category=DeprecationWarning)
85
  with open(emb_filename, 'rb') as emb:
86
  id2url, img_names, img_emb = pickle.load(emb)
87
-
 
88
 
89
  height = 256 # height for resizing images
90
 
 
84
  warnings.filterwarnings("ignore", category=DeprecationWarning)
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