From e265d46bafd9d448190bdb510e7ee4962c8df2ce Mon Sep 17 00:00:00 2001 From: Jason Bell Date: Tue, 3 Oct 2023 17:13:25 +1000 Subject: [PATCH] Jason Bell - removed another import statement. --- episodes/01-introduction.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/episodes/01-introduction.md b/episodes/01-introduction.md index d9dd1683..e35a4cbf 100644 --- a/episodes/01-introduction.md +++ b/episodes/01-introduction.md @@ -100,9 +100,7 @@ For this lesson, we will be using an existing image dataset known as CIFAR-10 th ### Load data ```python -# load the keras packages which includes the CIFAR-10 dataset that will be used. -from tensorflow import keras - +# load the CIFAR-10 dataset from the keras library for will be used. (train_images, train_labels), (val_images, val_labels) = keras.datasets.cifar10.load_data() ```