methodw commited on
Commit
9fd66a3
·
1 Parent(s): eed34b1
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -50,7 +50,7 @@ def process_image(image):
50
 
51
  # Extract the features from the uploaded image
52
  with torch.no_grad():
53
- inputs = processor(images=image, return_tensors="pt").to(device)
54
 
55
  # Use the traced model for inference
56
  outputs = traced_model(**inputs)
 
50
 
51
  # Extract the features from the uploaded image
52
  with torch.no_grad():
53
+ inputs = processor(images=image, return_tensors="pt")["pixel_values"].to(device)
54
 
55
  # Use the traced model for inference
56
  outputs = traced_model(**inputs)