vahidrezanezhad's picture
adding requirements
e3cece8
raw
history blame
175 Bytes
import gradio as gr
import tensorflow as tf
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()