Spaces:
Sleeping
Sleeping
File size: 250 Bytes
8fe2e46 |
1 2 3 4 5 6 7 8 |
import gradio as gr
from src.pipeline.predict import generate_caption
demo = gr.Interface(fn=generate_caption,
inputs=gr.Image(),
outputs=[gr.Textbox(label="Generated Caption", lines=3)],
)
demo.launch() |