Spaces:
Configuration error
Configuration error
Add print statement
Browse files
app.py
CHANGED
|
@@ -22,6 +22,8 @@ def image_to_sam_image_embedding(
|
|
| 22 |
) -> str:
|
| 23 |
"""Generate an image embedding."""
|
| 24 |
|
|
|
|
|
|
|
| 25 |
image = download_image(image_url)
|
| 26 |
image = image.convert("RGB")
|
| 27 |
image = np.asarray(image)
|
|
|
|
| 22 |
) -> str:
|
| 23 |
"""Generate an image embedding."""
|
| 24 |
|
| 25 |
+
print(image_url)
|
| 26 |
+
|
| 27 |
image = download_image(image_url)
|
| 28 |
image = image.convert("RGB")
|
| 29 |
image = np.asarray(image)
|