YOLO-World-Seg / app.py
onuralpszr's picture
feat: ✨ YOLO-World Dataset added
4fb6d61 verified
raw
history blame
No virus
334 Bytes
# import os
# os.system("mim install 'mmengine>=0.7.0'")
# os.system("mim install mmcv")
# os.system("mim install 'mmdet>=3.0.0'")
# os.system("pip install -e .")
# from yolo_world import version
import gradio as gr
def greet(name):
return "text"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()