yolov9 / app.py
909ahmed's picture
moved
1a3dbd7
raw
history blame contribute delete
201 Bytes
import gradio as gr
from detect import engine_detect
def greet(name):
engine_detect()
return "Hello " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()