Spaces:
Runtime error
Runtime error
File size: 821 Bytes
a0f7663 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import tensorflow as tf
import numpy as np
import gradio as gr
model = tf.keras.models.load_model("mnist-model.h5")
def recognize_digit(image):
image = cv.resize(image, (28, 28))
image = image / 255
image = image.reshape((1, 28, 28))
prediction = model.predict(image).tolist()[0]
return {str(i): prediction[i] for i in range(10)}
gr.Interface(fn=recognize_digit,
inputs="sketchpad",
outputs=gr.outputs.Label(num_top_classes=3),
live=True,
css=".footer {display:none !important}",
# title="MNIST Sketchpad",
description="Draw a number 0 through 9 on the sketchpad, and see predictions in real time.",
thumbnail="https://raw.githubusercontent.com/gradio-app/real-time-mnist/master/thumbnail2.png").launch(); |