Update app.py
Browse files
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.
|
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")
|