florence_OD / app.py
tejasmakode's picture
Create app.py
8a3c760 verified
raw
history blame contribute delete
201 Bytes
from transformers import pipeline
import gradio as gr
pipe = pipeline("text-generation", model="tejasmakode/florence_OD", trust_remote_code=True)
demo = gr.Interface.from_pipeline(pipe)
demo.launch()