morinop commited on
Commit
67adcd0
1 Parent(s): d3cca70

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -34,6 +34,7 @@ def greet(image):
34
  print(image.min(), image.max())
35
  image = image/255.0
36
  image = image.unsqueeze(0)
 
37
  image = torch.permute(image, [0,2,3,1])
38
  out = model(image)
39
 
 
34
  print(image.min(), image.max())
35
  image = image/255.0
36
  image = image.unsqueeze(0)
37
+ print(image.shape)
38
  image = torch.permute(image, [0,2,3,1])
39
  out = model(image)
40