Skip to content

Commit 9df444e

Browse files
committed
added missing pyplot import
1 parent 26e3b48 commit 9df444e

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

notebooks/05_basic_convnet.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"# %% Imports\n",
2121
"import tensorflow as tf\n",
2222
"import tensorflow.examples.tutorials.mnist.input_data as input_data\n",
23-
"from libs.utils import *\n"
23+
"from libs.utils import *\n",
24+
"import matplotlib.pyplot as plt"
2425
]
2526
},
2627
{

python/05_basic_convnet.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
import tensorflow as tf
66
import tensorflow.examples.tutorials.mnist.input_data as input_data
77
from libs.utils import *
8+
import matplotlib.pyplot as plt
89

910

1011
# %% Setup input to the network and true output label. These are

0 commit comments

Comments
 (0)