Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Noe831
/
mural_classifier
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
Noe831
commited on
Apr 19, 2024
Commit
2300746
·
1 Parent(s):
5788e37
in
Browse files
Files changed (1)
hide
show
app.py
+1
-1
app.py
CHANGED
Viewed
@@ -11,4 +11,4 @@ def classify_image(img):
11
12
13
14
-
intf = gr.Interface(classify_image,
gr.Image()
,
gr.Label(dict(zip(labels, labels
)
)))
11
12
13
14
+
intf = gr.Interface(classify_image,
inputs="image"
,
outputs="label"
)