Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
leticis
/
dsfsd
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
leticis
commited on
Sep 18, 2022
Commit
a0696c9
·
1 Parent(s):
11f6d23
Create new file
Browse files
Files changed (1)
hide
show
app.py
+7
-0
app.py
ADDED
Viewed
@@ -0,0 +1,7 @@
1
+
import gradio as gr
2
+
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")
7
+
demo.launch()