Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|