Spaces:
Sleeping
Sleeping
Commit
·
48bfd0d
1
Parent(s):
49017a2
change images to examples
Browse files
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="
|
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()
|