GameHasNoGame commited on
Commit
06c7ebe
·
verified ·
1 Parent(s): 4464278

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -10,7 +10,7 @@ def predict_image(img):
10
 
11
  # UI huggface
12
 
13
- image = gr.inputs.Image(shape=(192, 192))
14
- label = gr.outputs.Label()
15
  intrfce = gr.Interface(fn=predict_image, inputs=image, outputs=label)
16
  intrfce.launch(inline=False)
 
10
 
11
  # UI huggface
12
 
13
+ image = gr.Image(shape=(192, 192))
14
+ label = gr.Label()
15
  intrfce = gr.Interface(fn=predict_image, inputs=image, outputs=label)
16
  intrfce.launch(inline=False)