ernie_demo_toy / app.py
Jean Garcia-Gathright
added more libraries
4150cb0
raw
history blame
188 Bytes
import gradio as gr
import transformers
import tensorflow
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()