fanaf91318's picture
Update app.py
a26549e verified
raw
history blame contribute delete
216 Bytes
import gradio as gr
from transformers import pipeline
classifier = pipeline("image-classification", model="blackhole-boys/recommendation-system-v1")
demo=gr.Interface.from_pipeline(classifier)
demo.launch(debug=True)