debisoft commited on
Commit
ae5d2da
·
1 Parent(s): cef4ba9

Fix not int

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -15,7 +15,7 @@ transform = Compose(
15
  )
16
 
17
  def greet(input):
18
- coord_zxy = int(input)
19
  image = load_image("https://c.basemaps.cartocdn.com/rastertiles/voyager_labels_under" + coord_zxy)
20
  pixel_values = transform(image).unsqueeze(0)
21
  output = generator(pixel_values)
 
15
  )
16
 
17
  def greet(input):
18
+ coord_zxy = input
19
  image = load_image("https://c.basemaps.cartocdn.com/rastertiles/voyager_labels_under" + coord_zxy)
20
  pixel_values = transform(image).unsqueeze(0)
21
  output = generator(pixel_values)