pandas / app.py
justingrammens's picture
Create app.py
f6d69d3 verified
raw
history blame contribute delete
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()