akkasayaz commited on
Commit
ce2b708
1 Parent(s): a782961

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -19,8 +19,8 @@ def classify_image(img):
19
  # Cell
20
  image = gr.inputs.Image(shape=(192, 192))
21
  label = gr.outputs.Label()
22
- examples = ['basset.jpg']
23
 
24
  # Cell
25
- intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
26
  intf.launch()
 
19
  # Cell
20
  image = gr.inputs.Image(shape=(192, 192))
21
  label = gr.outputs.Label()
22
+
23
 
24
  # Cell
25
+ intf = gr.Interface(fn=classify_image, inputs=image, outputs=label)
26
  intf.launch()