ClassifyMe / app.py
Ifeanyi's picture
Update app.py
c847e9f
raw
history blame contribute delete
165 Bytes
from transformers import pipeline
import gradio as gr
def Classify():
model = pipeline("image-classification")
return gr.Interface.from_pipeline(model).launch()