vahidrezanezhad's picture
add app
fea099b
raw
history blame
328 Bytes
import gradio as gr
import tensorflow as tf
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("SBB/sbb_binarization/saved_model/2022-08-16")
print(model.summary())
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()