bears / app.py
neopolita's picture
wip
b838192
raw history blame
No virus
181 Bytes
import gradio as gr
from fastai.vision.all import *
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()