Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -29,5 +29,5 @@ def sketch_recognition(img):
|
|
29 |
preds = model.predict(np.array(img).reshape((1, 28, 28, 1))).tolist()[0]
|
30 |
return {str(i): preds[i] for i in range(10)}
|
31 |
|
32 |
-
interface = gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs=gr.outputs.Label(), theme='
|
33 |
title='DIGIT RECOGNIZER', description='Ecrire un chiffre entre 0 et 9 et cliquer sur "Submit". Le modèle retourne la probabilité prédite pour chaque chiffre').launch(share=True)
|
|
|
29 |
preds = model.predict(np.array(img).reshape((1, 28, 28, 1))).tolist()[0]
|
30 |
return {str(i): preds[i] for i in range(10)}
|
31 |
|
32 |
+
interface = gr.Interface(fn=sketch_recognition, inputs="sketchpad", outputs=gr.outputs.Label(), theme='darkdefault',
|
33 |
title='DIGIT RECOGNIZER', description='Ecrire un chiffre entre 0 et 9 et cliquer sur "Submit". Le modèle retourne la probabilité prédite pour chaque chiffre').launch(share=True)
|