From b0c7cf3a0dbc4be5f2d6ba118fb15e709eca1228 Mon Sep 17 00:00:00 2001 From: "Daniel J. McDonald" Date: Fri, 3 Nov 2023 14:44:32 -0700 Subject: [PATCH] get neural net handout to compile --- schedule/handouts/keras-nnet.Rmd | 20 +- schedule/handouts/keras-nnet.html | 977 +++++++++++++++++++----------- 2 files changed, 627 insertions(+), 370 deletions(-) diff --git a/schedule/handouts/keras-nnet.Rmd b/schedule/handouts/keras-nnet.Rmd index 16cd30a..e2344cc 100644 --- a/schedule/handouts/keras-nnet.Rmd +++ b/schedule/handouts/keras-nnet.Rmd @@ -45,10 +45,9 @@ Restart R again. ```{r setup, echo=FALSE, warning=FALSE} library(tidyverse) -library(reticulate) -library(keras) -use_virtualenv("r-tensorflow", TRUE) +reticulate::use_virtualenv("r-tensorflow", TRUE) library(tensorflow) +library(keras) ``` @@ -93,7 +92,7 @@ articles of clothing at low resolution (28 by 28 pixels), as seen here: Fashion MNIST is intended as a drop-in replacement for the classic [MNIST](http://yann.lecun.com/exdb/mnist/) dataset. The MNIST dataset contains images of handwritten digits (0, 1, 2, etc) in an identical format to the articles of clothing we'll use here. The original MNIST was curated by Yann -Lecun, and he maintained a +LeCun, and he maintained a [database of performance results](http://yann.lecun.com/exdb/mnist/) for many years. @@ -107,6 +106,7 @@ how accurately the network learned to classify images. You can access the Fashion MNIST directly from Keras. ```{r} + fashion_mnist <- dataset_fashion_mnist() c(train_images, train_labels) %<-% fashion_mnist$train @@ -321,7 +321,7 @@ model |> compile( Training the neural network model requires the following steps: -1 Feed the training data to the model — in this example, the `train_images` and `train_labels` arrays. +1. Feed the training data to the model — in this example, the `train_images` and `train_labels` arrays. 1. The model learns to associate images and labels. 1. We ask the model to make predictions about a test set — in this example, the `test_images` array. We verify that the predictions match the labels from the `test_labels` array. @@ -394,8 +394,8 @@ as.vector(class_pred[1:20]) -As the labels are 0-based, this actually means a predicted label of 9 (to be -found in `class_names[9]`). So the model is most confident that this image is +As the labels are 0-based, this actually means a predicted label of 9 would correspond to the label +found in `class_names[10]`. So the model is most confident that this image is an ankle boot. And we can check the test label to see this is correct: ```{r test-lab1} @@ -418,7 +418,7 @@ for (i in 1:25) { true_label <- test_labels[i] color <- ifelse(predicted_label == true_label, "#0b62a4", "#ff9200") image(1:28, 1:28, img, - col = gray((0:255) / 255), + col = gray((255:0) / 255), xaxt = "n", yaxt = "n", main = paste0( class_names[predicted_label + 1], " (", @@ -449,5 +449,7 @@ preds <- predict(rf, data = test_images) ``` The Test Set accuracy from Random Forests is -`r round(mean(preds$predictions == test_labels), 2) * 100`%. Pretty close. +`r round(mean(preds$predictions == test_labels), 2) * 100`%. + +Slightly better than the Neural Net for my run, but reasonably close. diff --git a/schedule/handouts/keras-nnet.html b/schedule/handouts/keras-nnet.html index fa449b7..dd9be31 100644 --- a/schedule/handouts/keras-nnet.html +++ b/schedule/handouts/keras-nnet.html @@ -1,222 +1,178 @@ + - + + - + - - - - - - - - + + Keras and Neural Networks - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - -
- + +
+
- + + -
-

Installation

+
+

Installation

Attribution: this Lab derives mainly from a Vignette in the R Keras package under the MIT License.

This proved to be more challenging than I anticipated…

My setup:

  • MacOS M1 Processor
  • -
  • R/Rstudio 4.0+
  • +
  • R/Rstudio 4.3+
-

See the installation guide.

-

However, there’s a small bug in the code. In section 3, step 5, run

-
source(system.file("helpers", "install.R", package = "ISLR2"))
-

Then run

-
source("https://github.com/UBC-STAT/stat-406/tree/main/_lecture-slides/handouts/djm-install-miniconda.R")
-

Then proceed.

-

This should work. Hopefully.

-
library(tensorflow)
-tf$constant("Hello, Tensorflow") ## checks that it points to the right thing
-
-
-

Thoughts on R vs. Python

+

Then, if not already installed, you’ll need 2 R packages

+
+
install.packages("reticulate")
+remotes::install_github("rstudio/tensorflow")
+install.packages("keras")
+
+

Now make sure that python is installed on your system. If it isn’t (or if you haven’t used it in a while, or if it’s somewhere R can’t find) this may take a while.

+
+
reticulate::install_python()
+
+

Now restart R before proceeding.

+

Finally, install the python keras package (which also installs tensorflow and some other things).

+
+
keras::install_keras()
+
+

Restart R again.

+
+
+
── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
+✔ dplyr     1.1.3     ✔ readr     2.1.4
+✔ forcats   1.0.0     ✔ stringr   1.5.0
+✔ ggplot2   3.4.3     ✔ tibble    3.2.1
+✔ lubridate 1.9.2     ✔ tidyr     1.3.0
+✔ purrr     1.0.2     
+── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
+✖ dplyr::filter() masks stats::filter()
+✖ dplyr::lag()    masks stats::lag()
+ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
+
+
+ +
+

Thoughts on R vs. Python

I’m doing this in R because it’s easier to walk through an R notebook than a Jupyter notebook (for me).

Most deep learning infrastructure is written in Python. So everything here is running python under the hood.

Once configured, it doesn’t matter which you use: do what you’re comfortable with.

There’s nothing special about Python (nor R). Consider this quote from Yann LeCun, head of AI at Facebook and one of the three fathers of deep learning (posted on Facebook on 26 October 2020):

-

-
-
-

Overview

+

+ +
+

Overview

In this guide, we will train a neural network model to classify images of clothing, like sneakers and shirts.

-
library(keras)

This guide uses the Fashion MNIST dataset which contains 70,000 grayscale images in 10 categories. The images show individual articles of clothing at low resolution (28 by 28 pixels), as seen here:

-

-

Fashion MNIST is intended as a drop-in replacement for the classic MNIST dataset. The MNIST dataset contains images of handwritten digits (0, 1, 2, etc) in an identical format to the articles of clothing we’ll use here. The original MNIST was curated by Yann Lecun, and he maintained a database of performance results for many years.

+

+

Fashion MNIST is intended as a drop-in replacement for the classic MNIST dataset. The MNIST dataset contains images of handwritten digits (0, 1, 2, etc) in an identical format to the articles of clothing we’ll use here. The original MNIST was curated by Yann LeCun, and he maintained a database of performance results for many years.

Here, we use Fashion MNIST for variety, and because it’s a slightly more challenging problem than regular MNIST. Both datasets are relatively small and are used to verify that an algorithm works as expected. They’re good starting points to test and debug code.

We will use 60,000 images to train the network and 10,000 images to evaluate how accurately the network learned to classify images. You can access the Fashion MNIST directly from Keras.

-
fashion_mnist <- dataset_fashion_mnist()
-
## Loaded Tensorflow version 2.6.0
-
c(train_images, train_labels) %<-% fashion_mnist$train
-c(test_images, test_labels) %<-% fashion_mnist$test
+
+
fashion_mnist <- dataset_fashion_mnist()
+
+c(train_images, train_labels) %<-% fashion_mnist$train
+c(test_images, test_labels) %<-% fashion_mnist$test
+

At this point we have four arrays: The train_images and train_labels arrays are the training set — the data the model uses to learn. The model is tested against the test set: the test_images, and test_labels arrays.

The images each are 28 x 28 arrays, with pixel values ranging between 0 and 255. The labels are arrays of integers, ranging from 0 to 9. These correspond to the class of clothing the image represents:

- +
@@ -267,223 +223,522 @@

Overview

Digit

Each image is mapped to a single label. Since the class names are not included with the dataset, we’ll store them in a vector to use later when plotting the images.

-
class_names = c('T-shirt/top',
-                'Trouser',
-                'Pullover',
-                'Dress',
-                'Coat', 
-                'Sandal',
-                'Shirt',
-                'Sneaker',
-                'Bag',
-                'Ankle boot')
-
-
-

Explore the data

+
+
class_names <- c(
+  "T-shirt/top",
+  "Trouser",
+  "Pullover",
+  "Dress",
+  "Coat",
+  "Sandal",
+  "Shirt",
+  "Sneaker",
+  "Bag",
+  "Ankle boot"
+)
+
+ +
+

Explore the data

Let’s explore the format of the dataset before training the model. The following shows there are 60,000 images in the training set, with each image represented as 28 x 28 pixels:

-
dim(train_images)
-
## [1] 60000    28    28
+
+
dim(train_images)
+
+
[1] 60000    28    28
+
+

Likewise, there are 60,000 labels in the training set:

-
dim(train_labels)
-
## [1] 60000
+
+
dim(train_labels)
+
+
[1] 60000
+
+

Each label is an integer between 0 and 9:

-
train_labels[1:20]
-
##  [1] 9 0 0 3 0 2 7 2 5 5 0 9 5 5 7 9 1 0 6 4
+
+
train_labels[1:20]
+
+
 [1] 9 0 0 3 0 2 7 2 5 5 0 9 5 5 7 9 1 0 6 4
+
+

There are 10,000 images in the test set. Again, each image is represented as 28 x 28 pixels:

-
dim(test_images)
-
## [1] 10000    28    28
+
+
dim(test_images)
+
+
[1] 10000    28    28
+
+

And the test set contains 10,000 images labels:

-
dim(test_labels)
-
## [1] 10000
+
+
dim(test_labels)
+
+
[1] 10000
+
-
-

Preprocess the data

+
+
+

Preprocess the data

The data should be preprocessed before training the network. If you inspect the first image in the training set, you will see that the pixel values fall in the range of 0 to 255:

-
image1 <- as.data.frame(train_images[1, , ])
-colnames(image1) <- seq_len(ncol(image1))
-image1$y <- seq_len(nrow(image1))
-image1 <- pivot_longer(image1, -y, names_to = "x")
-image1$x <- as.integer(image1$x)
-
-ggplot(image1, aes(x, y, fill = value)) +
-  geom_tile() +
-  scale_fill_gradient(low = "white", high = "#053b64",na.value = NA) +
-  scale_y_reverse() +
-  theme_minimal() +
-  theme(aspect.ratio = 1) +
-  xlab("") + ylab("")
-

-

We scale these values to a range of 0 to 1 before feeding to the neural network model. For this, we simply divide by 255. The main implications here are for starting values, learning rate, and regularization. The defaults like inputs in [0,1].

+
+
image1 <- as.data.frame(train_images[1, , ])
+colnames(image1) <- seq_len(ncol(image1))
+image1$y <- seq_len(nrow(image1))
+image1 <- pivot_longer(image1, -y, names_to = "x")
+image1$x <- as.integer(image1$x)
+
+ggplot(image1, aes(x, y, fill = value)) +
+  geom_raster() +
+  scale_fill_gradient(low = "white", high = "#053b64", na.value = NA) +
+  scale_y_reverse() +
+  theme_void() +
+  theme(aspect.ratio = 1)
+
+

+
+
+

We scale these values to a range of 0 to 1 before feeding to the neural network model. For this, we simply divide by 255. The main implications here are for starting values, learning rate, and regularization. The defaults like inputs in [0, 1].

It’s important that the training set and the testing set are preprocessed in the same way:

-
train_images <- train_images / 255
-test_images <- test_images / 255
+
+
train_images <- train_images / 255
+test_images <- test_images / 255
+

Display the first 25 images from the training set and display the class name above each image.

Verify that the data is in the correct format and we’re ready to build and train the network.

-
par(mfcol=c(5,5))
-par(mar=c(0, 0, 1.5, 0), xaxs='i', yaxs='i')
-for (i in 1:25) { 
-  img <- train_images[i, , ]
-  img <- t(apply(img, 2, rev)) # make things right-side up
-  image(1:28, 1:28, img, col = gray((0:255)/255), 
-        xaxt = 'n', yaxt = 'n',
-        main = paste(class_names[train_labels[i] + 1]))
-}
-

-
-
-

Build the model

+
+
sample_clothes <- map(1:25, ~ expand_grid(x = 1:28, y = 1:28)) |>
+  list_rbind(names_to = "idx")
+imgs <- train_images[1:25, , ]
+imgs <- apply(imgs, 1, c)
+cn <- class_names[train_labels[1:25] + 1]
+names(cn) <- 1:25
+sample_clothes$value <- c(imgs)
+rm(imgs)
+ggplot(sample_clothes, aes(x, y, fill = value)) +
+  geom_raster() +
+  scale_fill_gradient(low = "white", high = "#053b64", na.value = NA) +
+  scale_y_reverse() +
+  theme_void() +
+  facet_wrap(~idx, nrow = 5, ncol = 5, labeller = labeller(idx = cn)) +
+  theme()
+
+

+
+
+ +
+

Build the model

Building the neural network requires configuring the layers of the model, then compiling the model.

-
-

Setup the layers

+
+

Setup the layers

The basic building block of a neural network is the layer. Layers extract representations from the data fed into them. And, hopefully, these representations are more meaningful for the problem at hand.

Most of deep learning consists of chaining together simple layers. Most layers, like layer_dense(), have parameters that are learned during training.

-
model <- keras_model_sequential()
-model %>%
-  layer_flatten(input_shape = c(28, 28)) %>% # input
-  layer_dense(units = 128, activation = 'relu') %>% # hidden layer
-  layer_dense(units = 10, activation = 'softmax') # output class
-

The first layer in this network, layer_flatten(), transforms the format of the images from a 2d-array (of 28 by 28 pixels), to a 1d-array of 28 * 28 = 784 pixels. Think of this layer as unstacking rows of pixels in the image and lining them up. This layer has no parameters to learn; it only reformats the data.

-

After the pixels are flattened, the network consists of a sequence of two ‘dense’ layers. These are densely-connected, or fully-connected, neural layers. The first dense layer has 128 nodes (or neurons). The second (and last) layer is a 10-node softmax layer —this returns an array of 10 probability scores that sum to 1. Each node contains a score that indicates the probability that the current image belongs to one of the 10 digit classes.

+
+
model <- keras_model_sequential()
+model |>
+  layer_flatten(input_shape = c(28, 28)) %>% # input
+  layer_dense(units = 128, activation = "relu") %>% # hidden layer
+  layer_dense(units = 10, activation = "softmax") # output class
-
-

Compile the model

+

The first layer in this network, layer_flatten(), transforms the format of the images from a 2d-array (of 28 by 28 pixels), to a 1d-array of 28 * 28 = 784 pixels. Think of this layer as unstacking rows of pixels in the image and lining them up. This layer has no parameters to learn; it only reformats the data.

+

After the pixels are flattened, the network consists of a sequence of two ‘dense’ layers. These are densely-connected, or fully-connected, neural layers. The first dense layer has 128 nodes (or neurons). The second (and last) layer is a 10-node softmax layer—this returns an array of 10 probability scores that sum to 1. Each node contains a score that indicates the probability that the current image belongs to one of the 10 digit classes.

+
+
+

Compile the model

Before the model is ready for training, it needs a few more settings. These are added during the model’s compile step:

  • Loss function: This measures how accurate the model is during training. We want to minimize this function to “steer” the model in the right direction.
  • Optimizer: This is how the model is updated based on the data it sees and its loss function.
  • Metrics: Used to monitor the training and testing steps. The following example uses accuracy, the fraction of the images that are correctly classified.
-
model %>% compile(
-  optimizer = 'adam', 
-  loss = 'sparse_categorical_crossentropy',
-  metrics = c('accuracy')
-)
-
-
-

Train the model

+
+
model |> compile(
+  optimizer = "adam",
+  loss = "sparse_categorical_crossentropy",
+  metrics = c("accuracy")
+)
+
+
+
+

Train the model

Training the neural network model requires the following steps:

-
    +
    1. Feed the training data to the model — in this example, the train_images and train_labels arrays.
    2. The model learns to associate images and labels.
    3. -
    4. We ask the model to make predictions about a test set — in this example, the test_images array. We verify that the predictions match the labels from the test_labels array.
    5. -
-

To start training, call the fit() method — the model is “fit” to the training data:

-
model %>% fit(train_images, train_labels, epochs = 5)
-
train_score <- model %>% evaluate(train_images, train_labels, verbose=0)
-train_score
-
##      loss  accuracy 
-## 0.2645212 0.9027666
-

As the model trains, the loss and accuracy metrics are displayed. This model reaches an accuracy of about 88% on the training data.

-
-
-

Evaluate accuracy

+
  • We ask the model to make predictions about a test set — in this example, the test_images array. We verify that the predictions match the labels from the test_labels array.
  • + +

    To start training, call the fit() method — the model is “fit” to the training data (takes about a minute):

    +
    +
    model |> fit(train_images, train_labels, epochs = 5)
    +
    +
    Epoch 1/5
    +1875/1875 - 9s - loss: 0.5450 - accuracy: 0.8106 - 9s/epoch - 5ms/step
    +Epoch 2/5
    +1875/1875 - 11s - loss: 0.4763 - accuracy: 0.8361 - 11s/epoch - 6ms/step
    +Epoch 3/5
    +1875/1875 - 11s - loss: 0.4670 - accuracy: 0.8391 - 11s/epoch - 6ms/step
    +Epoch 4/5
    +1875/1875 - 10s - loss: 0.4695 - accuracy: 0.8401 - 10s/epoch - 5ms/step
    +Epoch 5/5
    +1875/1875 - 9s - loss: 0.4722 - accuracy: 0.8410 - 9s/epoch - 5ms/step
    +
    +
    +
    +
    train_score <- model |> evaluate(train_images, train_labels, verbose = 0)
    +train_score
    +
    +
         loss  accuracy 
    +0.4682855 0.8405667 
    +
    +
    +

    As the model trains, the loss and accuracy metrics are displayed. This model reaches an accuracy of about 84% on the training data.

    + +
    +

    Evaluate accuracy

    Next, compare how the model performs on the test dataset:

    -
    test_score <- model %>% evaluate(test_images, test_labels, verbose=0)
    -test_score
    -
    ##      loss  accuracy 
    -## 0.3375663 0.8774000
    -

    It turns out, the accuracy on the test dataset is a little less than the accuracy on the training dataset.

    -
    -
    -

    Make predictions

    +
    +
    test_score <- model |> evaluate(test_images, test_labels, verbose = 0)
    +test_score
    +
    +
        loss accuracy 
    +0.534751 0.820100 
    +
    +
    +

    It turns out, the accuracy on the test data set is a little less than the accuracy on the training dataset.

    + +
    +

    Make predictions

    With the model trained, we can use it to make predictions about some images.

    -
    predictions <- model %>% predict(test_images)
    +
    +
    predictions <- model |> predict(test_images)
    +
    +
    313/313 - 1s - 528ms/epoch - 2ms/step
    +
    +

    Here, the model has predicted the label for each image in the testing set. Let’s take a look at the first prediction:

    -
    round(predictions[1, ], 3)
    -
    ##  [1] 0.000 0.000 0.000 0.000 0.000 0.018 0.000 0.017 0.000 0.965
    -

    A prediction is an array of 10 numbers. These describe the “confidence” of the model that the image corresponds to each of the 10 different articles of clothing. We can see which label has the highest confidence value:

    -
    which.max(predictions[1, ])
    -
    ## [1] 10
    +
    +
    round(predictions[1, ], 3)
    +
    +
     [1] 0.000 0.000 0.000 0.000 0.000 0.012 0.000 0.008 0.000 0.980
    +
    +
    +

    A prediction is an array of 10 numbers. These are the posterior probabilities for each of the 10 different articles of clothing. We can see which label has the highest confidence value:

    +
    +
    which.max(predictions[1, ])
    +
    +
    [1] 10
    +
    +

    Alternatively, we can also directly get the class prediction:

    -
    class_pred <- model %>% predict(test_images) %>% k_argmax()
    -
    class_pred[1:20]
    -
    ## tf.Tensor([9 2 1 1 6 1 4 6 5 7 4 5 7 3 4 1 2 2 8 0], shape=(20,), dtype=int64)
    -

    As the labels are 0-based, this actually means a predicted label of 9 (to be found in class_names[9]). So the model is most confident that this image is an ankle boot. And we can check the test label to see this is correct:

    -
    test_labels[1]
    -
    ## [1] 9
    +
    +
    class_pred <- model |>
    +  predict(test_images) |>
    +  k_argmax()
    +
    +
    313/313 - 0s - 486ms/epoch - 2ms/step
    +
    +
    +
    +
    as.vector(class_pred[1:20])
    +
    +
     [1] 9 2 1 1 6 1 4 6 5 7 4 5 5 3 4 1 2 4 8 0
    +
    +
    +

    As the labels are 0-based, this actually means a predicted label of 9 would correspond to the label found in class_names[10]. So the model is most confident that this image is an ankle boot. And we can check the test label to see this is correct:

    +
    +
    test_labels[1]
    +
    +
    [1] 9
    +
    +

    Let’s plot several images with their predictions. Correct prediction labels are blue and incorrect prediction labels are orange

    -
    par(mfcol=c(5,5))
    -par(mar=c(0, 0, 1.5, 0), xaxs='i', yaxs='i')
    -for (i in 1:25) { 
    -  img <- test_images[i, , ]
    -  img <- t(apply(img, 2, rev)) 
    -  # subtract 1 as labels go from 0 to 9
    -  predicted_label <- which.max(predictions[i, ]) - 1
    -  true_label <- test_labels[i]
    -  color <- ifelse(predicted_label == true_label, '#0b62a4', '#ff9200')
    -  image(1:28, 1:28, img, col = gray((0:255)/255), 
    -        xaxt = 'n', yaxt = 'n',
    -        main = paste0(class_names[predicted_label + 1], " (",
    -                      class_names[true_label + 1], ")"),
    -        col.main = color)
    -}
    -

    -
    -
    -
    -

    What about random forests?

    -
    library(ranger) # faster version of randomForests
    -train_images <- t(apply(train_images, 1, c)) # flatten
    -test_images <- t(apply(test_images, 1, c))
    -train_images <- cbind(train_labels, train_images) %>%
    -  as.data.frame()
    -test_images <- cbind(test_labels, test_images) %>%
    -  as.data.frame()
    -names(train_images) <-c("cl",
    -                        paste0("x", 1:(ncol(train_images) - 1)))
    -names(test_images) <- names(train_images)
    -train_images$cl <- as.factor(train_images$cl)
    -test_images$cl <- as.factor(test_images$cl) 
    -rf <- ranger(cl~., data = train_images, num.trees = 100)
    -preds <- predict(rf, data = test_images)
    -
    mean(preds$predictions == test_labels) #fixed!!!
    -
    ## [1] 0.8757
    +
    +
    par(mfcol = c(5, 5))
    +par(mar = c(0, 0, 1.5, 0), xaxs = "i", yaxs = "i")
    +for (i in 1:25) {
    +  img <- test_images[i, , ]
    +  img <- t(apply(img, 2, rev))
    +  # subtract 1 as labels go from 0 to 9
    +  predicted_label <- which.max(predictions[i, ]) - 1
    +  true_label <- test_labels[i]
    +  color <- ifelse(predicted_label == true_label, "#0b62a4", "#ff9200")
    +  image(1:28, 1:28, img,
    +    col = gray((255:0) / 255),
    +    xaxt = "n", yaxt = "n",
    +    main = paste0(
    +      class_names[predicted_label + 1], " (",
    +      class_names[true_label + 1], ")"
    +    ),
    +    col.main = color
    +  )
    +}
    +
    +

    - - - -
    - - - - - - - - +
    - - - - + \ No newline at end of file