Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,10 @@ def predict(img):
|
|
15 |
iface = gr.Interface(predict, inputs = 'sketchpad',
|
16 |
outputs = 'text',
|
17 |
allow_flagging = 'never',
|
18 |
-
description = '
|
|
|
|
|
|
|
19 |
iface.launch(debug = "True", width = 500, height = 500)
|
20 |
|
21 |
|
|
|
15 |
iface = gr.Interface(predict, inputs = 'sketchpad',
|
16 |
outputs = 'text',
|
17 |
allow_flagging = 'never',
|
18 |
+
description = 'Project : Recognizing hardwritten digits '
|
19 |
+
description = 'In this project we will discover the MNIST handwritten digit recognition problem and we will develop a deep learning model in Python using the Keras library that will be capable of achieving excellent results. Now some questions come to mind'
|
20 |
+
description = '-----------------------------------------------'
|
21 |
+
description = 'Draw a Single Digit Below... (Draw in the centre for best results)')
|
22 |
iface.launch(debug = "True", width = 500, height = 500)
|
23 |
|
24 |
|