panik commited on
Commit
0a41e0a
·
1 Parent(s): ed33ebd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -8,7 +8,8 @@ import matplotlib.pyplot as plt
8
 
9
  def get_digit(digit_choice):
10
  digit = train_images[digit_choice]
11
- fig = plt.imshow(digit)
 
12
  out_txt = "digit: %d" % digit_choice
13
  return fig, out_txt
14
 
 
8
 
9
  def get_digit(digit_choice):
10
  digit = train_images[digit_choice]
11
+ fig = plt.figure(figsize=(10, 10))
12
+ plt.imshow(digit)
13
  out_txt = "digit: %d" % digit_choice
14
  return fig, out_txt
15