BreedClassifier / app.py
Samuel Rico
Creating app.pyd
1ac4340
raw
history blame contribute delete
164 Bytes
import gradio as gr
import fastai
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()