bird-classifier / app.py
jerpint's picture
add app
b879aeb
raw
history blame
150 Bytes
import gradio as gr
def greet(name):
return "Bonjour " + name + "!!"
demo = gr.Interface(fn=greet, inputs="text", outputs="text")
demo.launch()