hiikate commited on
Commit
35fa01e
1 Parent(s): e12e291
Files changed (2) hide show
  1. .DS_Store +0 -0
  2. app.py +1 -1
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
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']
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']
30
 
31
  intf = gr.Interface(fn=classify_image, inputs=image, outputs=label,examples=examples)
32
  intf.launch(inline=False)