File size: 656 Bytes
30ac140
8e9e307
e8a3fe7
30ac140
9105c18
 
30ac140
 
 
d0502ed
 
7503f80
30ac140
2ed30b2
9a5af09
 
 
2e48875
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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])
    return numb % 3

def rasp_numb(img):
    img = np.expand_dims(img, axis=0)
    return np.argmax(model.predict(img)[0])


output1 = gr.outputs.Text((np.argmax(model.predict(img)[0])% 3) )

output2 = gr.outputs.Text(np.argmax(model.predict(img)[0]))

demo = gr.Interface(fn=greet, inputs="sketchpad", outputs=[output1, output2])
demo.launch()