Cats_Detection / app.py
AbhishekSahu81's picture
Add application file
3091fd0
import gradio as gr
def greet(name):
return "Hello Abhishek" + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()