Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wvle
/
ImageClassifier
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
5c4fb2e
ImageClassifier
/
app.py
wvle
Create new file
e61b2e5
over 3 years ago
raw
Copy download link
history
blame
136 Bytes
import
gradio
as
gr
from
transformers
import
pipeline
pipe = pipeline(
"image-classification"
)
gr.Interface.from_pipeline(pipe).launch()