Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
justingrammens
/
pandas
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
eb6f7c3
pandas
/
app.py
justingrammens
Create app.py
f6d69d3
verified
over 1 year ago
raw
Copy download link
history
blame
Safe
174 Bytes
from
transformers
import
pipeline
import
gradio
as
gr
pipe = pipeline(
"image-classification"
, model=
"google/vit-base-patch16-224"
)
gr.Interface.from_pipeline(pipe).launch()