cyclegan-test / app.py
De4u's picture
Mini test
7c8ea8d verified
Raw
History Blame Contribute Delete
136 Bytes
import gradio as gr
demo = gr.Interface(fn=lambda x: "Hello: " + x, inputs="text", outputs="text", title="CycleGAN test")
demo.launch()