File size: 436 Bytes
30ac140
8e9e307
e8a3fe7
30ac140
9105c18
 
30ac140
 
 
d0502ed
 
 
 
30ac140
8e9e307
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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()