uhlarlar commited on
Commit
7eff5b2
·
1 Parent(s): 933f641

updated interface

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -14,5 +14,5 @@ image = gr.inputs.Image(shape=(192,192))
14
  label = gr.outputs.Label()
15
  examples = ['basset_hound2.jpg','Border_Collie_dog.jpg','german_sherpherd.jpg','poodle.jpg']
16
 
17
- iface = gr.Interface(fn=classify_image, inputs="image", outputs="label")
18
  iface.launch()
 
14
  label = gr.outputs.Label()
15
  examples = ['basset_hound2.jpg','Border_Collie_dog.jpg','german_sherpherd.jpg','poodle.jpg']
16
 
17
+ iface = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
18
  iface.launch()