yolov2 / app.py
till-onethousand's picture
copy
2914757
raw
history blame
205 Bytes
import gradio as gr
def greet(name, intensity):
return "Hello, " + name + "!" * int(intensity)
demo = gr.Interface(
fn=greet,
inputs=["text", "slider"],
outputs=["text"],
)
demo.launch()