keras_stylegan / app.py
moflo
Initial commit
1b30853
raw
history blame
155 Bytes
import gradio as gr
def greet(name):
return "Hello there" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()