Spaces:
Running
on
Zero
Running
on
Zero
whoops changing to a .to(torch_device) situation
Browse files
app.py
CHANGED
@@ -338,7 +338,7 @@ def embed_img(input_image):
|
|
338 |
tokens = pipe.feature_extractor(input_image).to(torch_device)
|
339 |
img_model = pipe.image_encoder.to(torch_device)
|
340 |
with torch.no_grad():
|
341 |
-
embeds = img_model(torch.
|
342 |
|
343 |
return embeds.image_embeds.to(torch_device)
|
344 |
|
|
|
338 |
tokens = pipe.feature_extractor(input_image).to(torch_device)
|
339 |
img_model = pipe.image_encoder.to(torch_device)
|
340 |
with torch.no_grad():
|
341 |
+
embeds = img_model(torch.tensor(tokens.pixel_values[0]).unsqueeze(0).to(torch_device))
|
342 |
|
343 |
return embeds.image_embeds.to(torch_device)
|
344 |
|