ImageClassifier / app.py
wvle's picture
Create new file
e61b2e5
raw
history blame
136 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("image-classification")
gr.Interface.from_pipeline(pipe).launch()