minima / app.py
Akingbeni
Update
03884cf
raw
history blame
175 Bytes
#from fastai.vision.all import *
import gradio as gr
def greet(name):
return "Hello " + name
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()