genai-model / app.py
siddardha's picture
Create app.py
53296bc
raw
history blame contribute delete
135 Bytes
import gradio as gr
from transformers import pipeline
pipe = pipeline("image-classification")
gr.Interface.from_pipeline(pipe).launch()