UnderWater / app.py
Yarflam's picture
Main code + Checkpoints_DFG
c954f09
raw
history blame
162 Bytes
import gradio as gr
def greet(name):
return "Hello " + name + "!!"
demo = gr.Interface(
fn=greet,
inputs="text",
outputs="text"
)
demo.launch()