vahidrezanezhad's picture
Update app.py
af4bf38 verified
raw
history blame
317 Bytes
import gradio as gr
import tensorflow as tf
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("vahidrezanezhad/sbb_binarization")
print(model.summary())
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()