File size: 181 Bytes
77a5b6f
b838192
77a5b6f
 
 
 
 
 
1
2
3
4
5
6
7
8
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()