Legola commited on
Commit
58cbf33
·
1 Parent(s): a6f7fc9

Update model.py

Browse files
Files changed (1) hide show
  1. model.py +1 -1
model.py CHANGED
@@ -77,7 +77,7 @@ def image_transform(image):
77
  image = image.convert('RGB')
78
 
79
  # Apply the same transformations as before
80
- image = transform(image).unsqueeze(0)
81
  return image
82
 
83
 
 
77
  image = image.convert('RGB')
78
 
79
  # Apply the same transformations as before
80
+ image =image_transform(image).unsqueeze(0)
81
  return image
82
 
83