Spaces:
Running
Running
jit fix 4
Browse files
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)
|