cisemh commited on
Commit
23c5a91
·
verified ·
1 Parent(s): 0ac133e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -19,7 +19,7 @@ def recognize_digit(image):
19
 
20
  iface = gr.Interface(
21
  fn = recognize_digit,
22
- inputs=gr.Image(shape=(28,28),image_mode = 'L', brush=gr.components.image_editor.Brush(default_color="rgb(156, 104, 200)"), invert_colors=True, source = 'canvas'),
23
  outputs=gr.Label(top_num_classes=3),
24
  description = 'Draw a Digit Below')
25
 
 
19
 
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