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()