Describe_things / app.py
ShynBui's picture
first commit
ad17f03
raw
history blame
283 Bytes
import gradio as gr
from utils import *
gradio_app = gr.Interface(
answer,
inputs= gr.Image(label="Input Image", sources=['upload', 'webcam'], type="pil"),
outputs= gr.Text(),
title="Describe things",
)
if __name__ == '__main__':
gradio_app.launch(share=True)