Shubhvedi commited on
Commit
ccf41f3
·
1 Parent(s): 4f936c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
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 = 'Draw a Digit Below... (Draw in the centre for best results)')
 
 
 
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