rock-classifier / app.py
azad ranjith
Create app.py
1f14b70 verified
raw
history blame
159 Bytes
import gradio as gr
def greet(name):
return "Hello ranjith+es" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()