EasyDetect / app.py
sunnychenxiwang's picture
update app.py
723cc2d
raw
history blame
169 Bytes
import gradio as gr
def greet(name, cnt):
return "Hello "*cnt + name + "!!"
iface = gr.Interface(fn=greet, inputs=["text","slider"], outputs="text")
iface.launch()