YOLO-World-Seg / app.py
onuralpszr's picture
feat: ✨ initial YOLO-World-Seg commit
7b2c66b verified
raw
history blame
No virus
148 Bytes
import gradio as gr
def greet(name):
return "Test " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()