Hugging Face
Models
Datasets
Spaces
Posts
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...
justingrammens
commited on
Apr 26, 2024
Commit
f6d69d3
·
verified
·
1 Parent(s):
e7cf0f5
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
from transformers import pipeline
2
+
import gradio as gr
3
+
4
+
pipe = pipeline("image-classification", model="google/vit-base-patch16-224")
5
+
6
+
gr.Interface.from_pipeline(pipe).launch()