jens commited on
Commit
2ba4f1e
·
1 Parent(s): 67eca52
Files changed (1) hide show
  1. 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").to(self.device)
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