vahidrezanezhad's picture
commit3
5b0a672
raw
history blame
254 Bytes
import gradio as gr
import tensorflow as tf
model = from_pretrained_keras("SBB/sbb_binarization")
print(model.summary())
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()