vahidrezanezhad's picture
Update app.py
f96306f verified
raw
history blame
366 Bytes
import gradio as gr
import tensorflow as tf
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("https://huggingface.co/SBB/eynollah-main-regions/blob/main/saved_model/2022-03-14")
print(model.summary())
def greet(name):
return "Hello " + name + "!!"
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()