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