MIMO / app.py
dsa2dsads's picture
Update app.py
34bc3da verified
raw
history blame contribute delete
282 Bytes
import gradio as gr
def echo(param_1_image, param_2_str, param_3_float):
return param_1_image, param_2_str, param_3_float
demo = gr.Interface(fn=echo, inputs=[gr.Image(type="filepath"),"text","number"], outputs=[gr.Image(type="filepath"),"text","number"])
demo.launch()