willsh1997 commited on
Commit
a4b49a6
·
verified ·
1 Parent(s): ddc5007

whoops changing to a .to(torch_device) situation

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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.cuda.tensor(tokens.pixel_values[0]).unsqueeze(0))
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