MyNewSpace / app.py
ISYS's picture
Update app.py
d0502ed
raw
history blame
436 Bytes
import numpy as np
import gradio as gr
from tensorflow import keras
from huggingface_hub import from_pretrained_keras
model = from_pretrained_keras("ISYS/MyNewModel")
def greet(img):
img = np.expand_dims(img, axis=0)
#return np.argmax(model.predict(img)[0])
numb = np.argmax(model.predict(img)[0])
ost_numb = numb % 3
return ost_numb
demo = gr.Interface(fn=greet, inputs="sketchpad", outputs="text")
demo.launch()