cisemh commited on
Commit
a0f5ead
·
verified ·
1 Parent(s): 9452384

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -20,6 +20,7 @@ def recognize_digit(image):
20
  iface = gr.Interface(
21
  fn = recognize_digit,
22
  inputs=gr.Image(shape=(28,28),image_mode = 'L',invert_colors=True, source = 'canvas'),
23
- outputs=gr.Label(top_num_classes=3))
 
24
 
25
  iface.launch()
 
20
  iface = gr.Interface(
21
  fn = recognize_digit,
22
  inputs=gr.Image(shape=(28,28),image_mode = 'L',invert_colors=True, source = 'canvas'),
23
+ outputs=gr.Label(top_num_classes=3),
24
+ description = 'Draw a Digit Below')
25
 
26
  iface.launch()