yellowdolphin commited on
Commit
48bfd0d
·
1 Parent(s): 49017a2

change images to examples

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -3,5 +3,5 @@ import gradio as gr
3
  def image_classifier(inp):
4
  return {'cat': 0.3, 'dog': 0.7}
5
 
6
- demo = gr.Interface(fn=image_classifier, inputs="image", outputs="label", examples="images/subdir")
7
  demo.launch()
 
3
  def image_classifier(inp):
4
  return {'cat': 0.3, 'dog': 0.7}
5
 
6
+ demo = gr.Interface(fn=image_classifier, inputs="image", outputs="label", examples="examples")
7
  demo.launch()