Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
tejasmakode
/
florence_OD
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
tejasmakode
commited on
Jul 24, 2024
Commit
8a3c760
·
verified
·
1 Parent(s):
9075d72
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+6
-0
app.py
ADDED
Viewed
@@ -0,0 +1,6 @@
1
+
from transformers import pipeline
2
+
import gradio as gr
3
+
4
+
pipe = pipeline("text-generation", model="tejasmakode/florence_OD", trust_remote_code=True)
5
+
demo = gr.Interface.from_pipeline(pipe)
6
+
demo.launch()