hiikate commited on
Commit
e700e04
·
1 Parent(s): 35fa01e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -26,7 +26,7 @@ image = gr.inputs.Image(shape=(192,192))
26
  label = gr.outputs.Label()
27
  title = "Pet Breed Classifier"
28
  description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace spaces."
29
- examples = ['dog.jpeg','cat.jpeg','dunno']
30
 
31
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,examples=examples)
32
  intf.launch(inline=False)
 
26
  label = gr.outputs.Label()
27
  title = "Pet Breed Classifier"
28
  description = "A pet breed classifier trained on the Oxford Pets dataset with fastai. Created as a demo for Gradio and HuggingFace spaces."
29
+ examples = ['dog.jpeg','cat.jpeg','dunno.jpeg']
30
 
31
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,examples=examples)
32
  intf.launch(inline=False)