Spaces:
Runtime error
Runtime error
jens
commited on
Commit
·
2ba4f1e
1
Parent(s):
67eca52
fix
Browse files- inference.py +1 -1
inference.py
CHANGED
@@ -16,7 +16,7 @@ class DepthPredictor:
|
|
16 |
|
17 |
def predict(self, image):
|
18 |
# prepare image for the model
|
19 |
-
inputs = self.processor(images=image, return_tensors="pt")
|
20 |
with torch.no_grad():
|
21 |
outputs = self.model(**inputs)
|
22 |
predicted_depth = outputs.predicted_depth
|
|
|
16 |
|
17 |
def predict(self, image):
|
18 |
# prepare image for the model
|
19 |
+
inputs = self.processor(images=image, return_tensors="pt")
|
20 |
with torch.no_grad():
|
21 |
outputs = self.model(**inputs)
|
22 |
predicted_depth = outputs.predicted_depth
|