paascorb commited on
Commit
7c5de00
·
1 Parent(s): 5d37bce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -75,7 +75,7 @@ def transform_image(image):
75
 
76
  def predict(img):
77
  img = PIL.Image.fromarray(img, "RGB")
78
- image = transforms.Resize((480,640))(img)
79
  tensor = transform_image(image=image)
80
 
81
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")
 
75
 
76
  def predict(img):
77
  img = PIL.Image.fromarray(img, "RGB")
78
+ image = transforms.Scale((480,640))(img)
79
  tensor = transform_image(image=image)
80
 
81
  device = torch.device("cuda" if torch.cuda.is_available() else "cpu")