DhruvK0 commited on
Commit
047da1e
1 Parent(s): ebb358f

fixed app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ def classify_image(img):
21
  # %% ../app.ipynb 8
22
  image = gr.inputs.Image(shape=(192,192))
23
  label = gr.outputs.Label()
24
- examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg', 'dog2.jpg']
25
 
26
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
27
  intf.launch(inline=False, share=True)
 
21
  # %% ../app.ipynb 8
22
  image = gr.inputs.Image(shape=(192,192))
23
  label = gr.outputs.Label()
24
+ examples = ['dog.jpg', 'cat.jpg', 'dunno.jpg']
25
 
26
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label, examples=examples)
27
  intf.launch(inline=False, share=True)