2336 lines
105 KiB
TeX
2336 lines
105 KiB
TeX
\documentclass[letterpaper]{report}
|
|
|
|
\usepackage{hyperref}
|
|
\usepackage{fancyhdr}
|
|
\usepackage{amsmath}
|
|
\usepackage{amssymb}
|
|
\usepackage{enumerate}
|
|
\usepackage{caption}
|
|
|
|
\setlength\parindent{0pt}
|
|
|
|
% start meta data
|
|
|
|
\title{Python Machine Learning\\ Equation Reference}
|
|
\author{Sebastian Raschka \\ \texttt{mail@sebastianraschka.com}}
|
|
\date{ \vspace{2cm} 05\slash 04\slash 2015 (last updated: 11\slash 29\slash 2016) \\\begin{flushleft} \vspace{2cm} \noindent\rule{10cm}{0.4pt} \\ Code Repository and Resources:: \href{https://github.com/rasbt/python-machine-learning-book}{https://github.com/rasbt/python-machine-learning-book} \vspace{2cm} \endgraf @book\{raschka2015python,\\
|
|
title=\{Python Machine Learning\},\\
|
|
author=\{Raschka, Sebastian\},\\
|
|
year=\{2015\},\\
|
|
publisher=\{Packt Publishing\} \} \end{flushleft}}
|
|
|
|
% end meta data
|
|
|
|
% start header and footer
|
|
\pagestyle{fancy}
|
|
\lhead{Sebastian Raschka}
|
|
\rhead{Python Machine Learning -- Equation Reference -- Ch. \thechapter}
|
|
\cfoot{\thepage} % centered footer
|
|
\renewcommand{\headrulewidth}{0.4pt}
|
|
\renewcommand{\footrulewidth}{0.4pt}
|
|
\renewcommand{\chaptermark}[1]{%
|
|
{}}
|
|
|
|
|
|
|
|
% end header and footer
|
|
|
|
|
|
|
|
|
|
\begin{document} % start main document
|
|
|
|
|
|
\maketitle
|
|
|
|
|
|
\tableofcontents
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 1
|
|
%%%%%%%%%%%%%%%
|
|
|
|
|
|
\chapter{Giving Computers the Ability to Learn from Data}
|
|
|
|
\section{Building intelligent machines to transform data into knowledge}
|
|
\section{The three different types of machine learning}
|
|
\section{Making predictions about the future with supervised learning}
|
|
\subsection{Classification for predicting class labels}
|
|
\subsection{Regression for predicting continuous outcomes}
|
|
\section{Solving interactive problems with reinforcement learning}
|
|
\section{Discovering hidden structures with unsupervised learning}
|
|
\subsection{Finding subgroups with clustering}
|
|
\subsection{Dimensionality reduction for data compression}
|
|
\section{An introduction to the basic terminology and notations}
|
|
|
|
\newpage
|
|
|
|
The Iris dataset, consisting of 150 samples and 4 features, can then be written as a $150 \times 4$ matrix $\mathbf{X} \in \mathbb{R}^{150 \times 4}:$
|
|
|
|
\[
|
|
\begin{bmatrix}
|
|
x_{1}^{(1)} & x_{2}^{(1)} & x_{3}^{(1)} & \dots & x_{4}^{(1)} \\
|
|
x_{1}^{(2)} & x_{2}^{(2)} & x_{3}^{(2)} & \dots & x_{4}^{(2)} \\
|
|
\vdots & \vdots & \vdots & \ddots & \vdots \\
|
|
x_{1}^{(150)} & x_{2}^{(150)} & x_{3}^{(150)} & \dots & x_{4}^{(150)}
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
For the rest of this book, unless noted otherwise, we will use the superscript $(i)$ to refer to the $i$th training sample, and the subscript $j$ to refer to the $j$th dimension of the training dataset.
|
|
|
|
We use lower-case, bold-face letters to refer to vectors ($\mathbf{x} \in \mathbb{R}^{n \times 1}$) and upper-case, bold-face letters to refer to matrices, respectively ($\mathbf{X} \in \mathbb{R}^{n \times m}$), where $n$ refers to the number of rows, and $m$ refers to the number of columns, respectively. To refer to single elements in a vector or matrix, we write the letters in italics $x^{(n)}$ or $x^{(n)}_{m}$, respectively. For example, $x^{150}_1$ refers to the refers to the first dimension of the flower sample 150, the sepal length. Thus, each row in this feature matrix represents one flower instance and can be written as four-dimensional row vector $\mathbf{x}^{(i)} \in \mathbb{R}^{1 \times 4}$
|
|
|
|
\[ \mathbf{x}^{(i)} = \bigg[x^{(i)}_1 \; x^{(i)}_2 \; x^{(i)}_3 \; x^{(i)}_4 \bigg]. \]
|
|
|
|
Each feature dimension is a 150-dimensional column vector $\mathbf{x}_{j} \in \mathbb{R}^{150 \times 1}$, for example
|
|
|
|
\[
|
|
\mathbf{x_j} = \begin{bmatrix}
|
|
x_{j}^{(1)} \\
|
|
x_{j}^{(2)} \\
|
|
\vdots \\
|
|
x_{j}^{(150)}
|
|
\end{bmatrix}
|
|
.\]
|
|
|
|
Similarly, we store the target variables (here: class labels) as a 150-dimensional column vector
|
|
|
|
\[
|
|
\mathbf{y} = \begin{bmatrix}
|
|
y^{(1)} \\
|
|
y^{(2)} \\
|
|
\vdots \\
|
|
y^{(150)}
|
|
\end{bmatrix}
|
|
, (y \in \{ \text{Setosa, Versicolor, Virginica \}}).\]
|
|
|
|
\newpage
|
|
|
|
\section{A roadmap for building machine learning systems}
|
|
\subsection{Preprocessing -- getting data into shape}
|
|
\subsection{Training and selecting a predictive model}
|
|
\subsection{Evaluating models and predicting unseen data instances}
|
|
\section{Using Python for machine learning}
|
|
\subsection{Installing Python packages}
|
|
\section{Summary}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 2
|
|
%%%%%%%%%%%%%%%
|
|
|
|
|
|
\chapter{Training Machine Learning Algorithms for Classification}
|
|
|
|
\section{Artificial neurons -- a brief glimpse into the early history of machine learning}
|
|
|
|
We can then define an activation function $\phi(z)$ that takes a linear combination of certain
|
|
input values $\mathbf{x}$ and a corresponding weight vector $\mathbf{w}$ where $z$ is the so-called net
|
|
input ($z = w_1 x_1 + \dots + w_m x_m$):
|
|
|
|
\[
|
|
\mathbf{w} = \begin{bmatrix}
|
|
w_{1} \\
|
|
w_{2} \\
|
|
\vdots \\
|
|
w_{m}
|
|
\end{bmatrix}, \quad
|
|
\mathbf{x} = \begin{bmatrix}
|
|
x_{1} \\
|
|
x_{2} \\
|
|
\vdots \\
|
|
x_{m}
|
|
\end{bmatrix}.
|
|
\]
|
|
|
|
Now, if the activation of a particular sample $x^{(i)}$, that is, the output of $\phi(z)$, is greater than a defined threshold $\theta$, we predict class 1 and class -1, otherwise. In the perceptron algorithm, the activation function $\phi(\cdot)$ is a simple \textit{unit step function}, which is sometimes also called the \textit{Heaviside step function}:
|
|
|
|
\[ \phi(z) = \begin{cases}
|
|
1 & \text{ if } z \ge \theta \\
|
|
-1 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
For simplicity, we can bring the threshold $\theta$ to the left side of the equation and define a weight-zero as $w_0 = -\theta$ and $x_0=1$, so that we write $\mathbf{z}$ in a more compact form
|
|
|
|
\[
|
|
z = w_0 x_0 + w_1 x_1 + \dots + w_m x_m = \mathbf{w^T x}
|
|
\]
|
|
|
|
and
|
|
|
|
\[ \phi(z) = \begin{cases}
|
|
1 & \text{ if } z \ge 0 \\
|
|
-1 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
|
|
In the following sections, we will often make use of basic notations from linear algebra. For example, we will abbreviate the sum of the products of the values in $\mathbf{x}$ and $\mathbf{w}$ using a \textit{vector dot product}, whereas superscript $T$ stands for \textit{transpose}, which is an operation that transforms a column vector into a row vector and vice versa:
|
|
|
|
\[
|
|
z = w_0 x_0 + w_1 x_1 + \dots + w_m x_m = \mathbf{w^T x} = \sum_{j=0}^{m} \mathbf{w_j} \mathbf{x_j} = \mathbf{w}^T \mathbf{x}.
|
|
\]
|
|
|
|
For example:
|
|
|
|
\[
|
|
\big[1 \quad 2 \quad 3 \big] \times \begin{bmatrix}
|
|
4 \\
|
|
5 \\
|
|
6
|
|
\end{bmatrix} = 1 \times 4 + 2 \times 5 + 3 \times 6 = 32.
|
|
\]
|
|
|
|
Furthermore, the transpose operation can also be applied to a matrix to
|
|
reflect it over its diagonal, for example:
|
|
|
|
\[
|
|
\begin{bmatrix}
|
|
1 & 2 \\
|
|
3 & 4 \\
|
|
5 & 6
|
|
\end{bmatrix}^T = \begin{bmatrix}
|
|
1 & 3 & 5 \\
|
|
2 & 4 & 6
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
Rosenblatt's initial perceptron rule is fairly simple and can be summarized by the following steps:
|
|
|
|
\begin{enumerate}
|
|
\item Initialize the weights to 0 or small random numbers.
|
|
\item For each training sample $\mathbf{x}^{(i)}$, perform the following steps:
|
|
\begin{enumerate}
|
|
\item Compute the output value $\hat{y}$.
|
|
\item Update the weights.
|
|
\end{enumerate}
|
|
\end{enumerate}
|
|
|
|
Here, the output value is the class label predicted by the unit step function that we defined earlier, and the simultaneous update of each weight $w_j$ in the weight vector $\mathbf{w}$ can be more formally written as:
|
|
|
|
\[
|
|
w_j := w_j + \Delta w_j
|
|
\]
|
|
|
|
The value of $\Delta w_j$, which is used to update the weight $w_j$, is calculated by the perceptron rule:
|
|
|
|
\[
|
|
\Delta w_j = \eta \bigg( y^{(i)} - \hat{y}^{(i)} \bigg)x_{j}^{(i)}
|
|
\]
|
|
|
|
Where $\eta$ is the learning rate (a constant between 0.0 and 1.0), $y^{(i)}$ is the true class label of the $i$th training sample, and $\hat{y}^{(i)}$ is the predicted class label. It is important to note that all weights in the weight vector are being updated simultaneously, which means that we don't recompute $\hat{y}^{(i)}$ before all of the weights $\Delta w_j$ were updated. Concretely, for a 2D dataset, we would write the update as follows:
|
|
|
|
\[
|
|
\Delta w_0 = \eta \bigg( y^{(i)} - \hat{y}^{(i)} \bigg)
|
|
\]
|
|
|
|
\[
|
|
\Delta w_1 = \eta \bigg( y^{(i)} - \hat{y}^{(i)} \bigg) x_{1}^{(i)}
|
|
\]
|
|
|
|
\[
|
|
\Delta w_2 = \eta \bigg( y^{(i)} - \hat{y}^{(i)} \bigg) x_{2}^{(i)}
|
|
\]
|
|
|
|
Before we implement the perceptron rule in Python, let us make a simple thought experiment to illustrate how beautifully simple this learning rule really is. In the two scenarios where the perceptron predicts the class label correctly, the weights remain unchanged:
|
|
|
|
\[
|
|
\Delta w_j = \eta \bigg( -1 -- 1 \bigg)x_{j}^{(i)} = 0
|
|
\]
|
|
|
|
\[
|
|
\Delta w_j = \eta \bigg( 1-1 \bigg)x_{j}^{(i)} = 0
|
|
\]
|
|
|
|
However, in the case of a wrong prediction, the weights are being pushed towards the direction of the positive or negative target class, respectively:
|
|
|
|
\[
|
|
\Delta w_j = \eta \bigg( 1 -- 1 \bigg)x_{j}^{(i)} = \eta(2)x_{j}^{(i)}
|
|
\]
|
|
|
|
\[
|
|
\Delta w_j = \eta \bigg( -1-1 \bigg)x_{j}^{(i)} = \eta(-2)x_{j}^{(i)}
|
|
\]
|
|
|
|
|
|
To get a better intuition for the multiplicative factor $x_{j}^{(i)}$, let us go through another
|
|
simple example, where:
|
|
|
|
\[
|
|
y^{(i)} = +1, \quad \hat{y}^{(i)} = -1, \quad \eta = 1
|
|
\]
|
|
|
|
Let's assume that $x_{j}^{(i)}=0.5$ and we misclassify this sample as $-1$. In this case, we would increase the corresponding weight by $1$ so that the net input $x_{j}^{i} \times w_{j}^{(i)}$ will be more positive the next time we encounter this sample and thus will be more likely to be above the threshold of the unit step function to classify the sample as $+1$:
|
|
|
|
\[
|
|
\Delta w_{j} = (1--1)0.5 = (2)0.5 = 1
|
|
\]
|
|
|
|
The weight update is proportional to the value of $x_{j}^{(i)}$. For example, if we have another sample $x_{j}^{(i)}=2$ that is incorrectly classified as $-1$, we'd push the decision boundary by an even larger extent to classify this sample correctly the next time:
|
|
|
|
\[
|
|
\Delta w_{j} = (1--1)2 = (2)2 = 4.
|
|
\]
|
|
|
|
|
|
\section{Implementing a perceptron learning algorithm in Python}
|
|
|
|
\subsection{Training a perceptron model on the Iris dataset}
|
|
|
|
\section{Adaptive linear neurons and the convergence of learning}
|
|
|
|
The key difference between the Adaline rule (also known as the Widrow-Hoff rule) and Rosenblatt's perceptron is that the weights are updated based on a linear activation function rather than a unit step function like in the perceptron. In Adaline, this linear activation function $\phi{z}$ is simply the identity function of the net input so that
|
|
|
|
\[
|
|
\phi \big( \mathbf{w}^T \mathbf{x} \big) = \mathbf{w}^T \mathbf{x}
|
|
\]
|
|
|
|
\subsection{Minimizing cost functions with gradient descent}
|
|
|
|
One of the key ingredients of supervised machine learning algorithms is to define an objective function that is to be optimized during the learning process. This objective function is often a cost function that we want to minimize. In the case of Adaline, we can define the cost function $J(\cdot)$ to learn the weights as the Sum of Squared Errors (SSE) between the calculated outcomes and the true class labels
|
|
|
|
\[
|
|
J(\mathbf{w}) = \frac{1}{2} \sum_i \bigg(y^{(i)} - \phi \big(z^{(i)} \big) \bigg)^2.
|
|
\]
|
|
|
|
Using gradient descent, we can now update the weights by taking a step away from the gradient $\nabla J(\mathbf{w})$ of our cost function $J(\mathbf{\cdot})$:
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} + \Delta \mathbf{w}.
|
|
\]
|
|
|
|
To compute the gradient of the cost function, we need to compute the partial derivative of the cost function with respect to each weight $w_j$,
|
|
|
|
\[
|
|
\frac{\partial J}{\partial w_j} = - \sum_i \bigg( y^{(i)} - \phi \big(z^{(i)} \big) \bigg) x_{j}^{(i)},
|
|
\]
|
|
|
|
so that we can write the update of weight $w_j$ as
|
|
|
|
\[
|
|
\Delta w_j = - \eta \frac{\partial J}{\partial w_j} = \eta \sum_i \bigg( y^{(i)} - \phi \big(z^{(i)} \big) \bigg) x_{j}^{(i)}
|
|
\]
|
|
|
|
Since we update all weights simultaneously, our Adaline learning rule becomes
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} + \Delta \mathbf{w}.
|
|
\]
|
|
|
|
|
|
For those who are familiar with calculus, the partial derivative of the SSE cost function with respect to the $j$th weight in can be obtained as follows:
|
|
|
|
\begin{equation*}
|
|
\begin{split}
|
|
& \frac{\partial J}{\partial w_j} = \frac{\partial}{\partial w_j} \frac{1}{2} \sum_i \bigg( y^{(i)} - \phi \big( z^{(i)} \big) \bigg)^2 \\
|
|
& = \frac{1}{2} \frac{\partial}{\partial w_j} \sum_i \bigg( y^{(i)} - \phi \big( z^{(i)} \big) \bigg)^2 \\
|
|
& = \frac{1}{2} \sum_i 2 \big( y^{(i)} - \phi(z^{(i)})\big) \frac{\partial}{\partial w_j} \Big( y^{(i)} - \phi({z^{(i)}}) \Big) \\
|
|
& = \sum_i \big( y^{(i)} - \phi (z^{(i)}) \big) \frac{\partial}{\partial w_j} \Big( y^{(i)} - \sum_i \big(w^{(i)}_{j} x^{(i)}_{j} \big) \Big) \\
|
|
& = \sum_i \bigg( y^{(i)} - \phi \big( z^{(i)} \big) \bigg) \bigg( - x_{j}^{(i)} \bigg) \\
|
|
& = - \sum_i \bigg( y^{(i)} - \phi \big( z^{(i)} \big) \bigg) x_{j}^{(i)} \\
|
|
\end{split}
|
|
\end{equation*}
|
|
|
|
Performing a matrix-vector multiplication is similar to calculating a vector dot product where each row in the matrix is treated as a single row vector. This vectorized approach represents a more compact notation and results in a more efficient computation using NumPy. For example:
|
|
|
|
\[
|
|
\begin{bmatrix}
|
|
1 & 2 & 3\\
|
|
4 & 5 & 6
|
|
\end{bmatrix} \times \begin{bmatrix}
|
|
7 \\
|
|
8 \\
|
|
9
|
|
\end{bmatrix} = \begin{bmatrix}
|
|
1 \times 7 + 2 \times 8 + 3 \times 9 \\
|
|
4 \times 7 + 5 \times 8 + 6 \times 9
|
|
\end{bmatrix} = \begin{bmatrix}
|
|
50 \\
|
|
122
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
\subsection{Implementing an Adaptive Linear Neuron in Python}
|
|
|
|
Here, we will use a feature scaling method called standardization, which gives our data the property of a standard normal distribution. The mean of each feature
|
|
is centered at value 0 and the feature column has a standard deviation of 1. For example, to standardize the $j$th feature, we simply need to subtract the sample mean $\mu_j$ from every training sample and divide it by its standard deviation $\sigma_j$:
|
|
|
|
\[
|
|
\mathbf{x'}_j = \frac{\mathbf{x} - \mathbf{\mathbf{\mu_j}}}{\sigma_j}.
|
|
\]
|
|
|
|
|
|
Here $\mathbf{x}_j$ is a vector consisting of the $j$th feature values of all training samples $n$.
|
|
|
|
\subsection{Large scale machine learning and stochastic gradient descent}
|
|
|
|
A popular alternative to the batch gradient descent algorithm is stochastic gradient descent, sometimes also called iterative or on-line gradient descent. Instead of updating the weights based on the sum of the accumulated errors over all samples $\mathbf{x}^{(i)}$:
|
|
|
|
\[
|
|
\Delta \mathbf{w} = \eta \sum_i \bigg( y^{(i)} - \phi \big( z^{(i)}\big) \bigg) \mathbf{x}^{(i)}.
|
|
\]
|
|
|
|
We update the weights incrementally for each training sample:
|
|
|
|
\[
|
|
\Delta \mathbf{w} = \eta \bigg( y^{(i)} - \phi \big( z^{(i)}\big) \bigg) \mathbf{x}^{(i)}.
|
|
\]
|
|
|
|
\section{Summary}
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 3
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{A Tour of Machine Learning Classifiers Using Scikit-learn}
|
|
|
|
\section{Choosing a classification algorithm}
|
|
\section{First steps with scikit-learn}
|
|
\subsection{Training a perceptron via scikit-learn}
|
|
\section{Modeling class probabilities via logistic regression}
|
|
\subsection{Logistic regression intuition and conditional probabilities}
|
|
|
|
The odds ratio can be written as
|
|
|
|
\[
|
|
\frac{p}{(1-p)},
|
|
\]
|
|
|
|
where $p$ stands for the probability of the positive (1? p)
|
|
event. The term positive event does not necessarily mean good, but refers to the event that we want to predict, for example, the probability that a patient has a certain disease; we can think of the positive event as class label $y =1$. We can then further define the logit function, which is simply the logarithm of the odds ratio (log-odds):
|
|
|
|
\[
|
|
logit(p) = \log \frac{p}{1-p}
|
|
\]
|
|
|
|
The logit function takes input values in the range 0 to 1 and transforms them to values over the entire real number range, which we can use to express a linear relationship between feature values and the log-odds:
|
|
|
|
\[
|
|
logit ( p (y=1 | \mathbf{x})) = w_0 x_0 + w_1 x_1 + \cdots + x_m w_m = \sum^{m}_{i=0} w_i x_i = \mathbf{w}^T \mathbf{x}.
|
|
\]
|
|
|
|
Here, $p(y=1 | \mathbf{x})$ s the conditional probability that a particular sample belongs to class 1 given its features $\mathbf{x}$. Now what we are actually interested in is predicting the probability that a certain sample belongs to a particular class, which is the inverse form of the logit function. It is also called the logistic function, sometimes simply abbreviated as sigmoid function due to its characteristic S-shape
|
|
|
|
\[
|
|
\phi(z) = \frac{1}{1+e^{-z}}.
|
|
\]
|
|
|
|
The output of the sigmoid function is then interpreted as the probability of particular sample belonging to class 1
|
|
|
|
\[
|
|
\phi(z) = P(y=1 | \mathbf{x}; \mathbf{w})
|
|
\]
|
|
|
|
given its features $\mathbf{x}$ parameterized by the weights $\mathbf{w}$. For example, if we compute $\phi(z) = 0.8$ for a particular flower sample, it means that the chance that this sample is an Iris-Versicolor flower is 80 percent. Similarly, the probability that this ower is an Iris-Setosa ower can be calculated as $P(y=0 | \mathbf{x};\mathbf{w})=1 - P (y=1 | \mathbf{x}; \mathbf{w}) = 0.2$ or 20 percent. The predicted probability can then simply be converted into a binary outcome via a quantizer (unit step function):
|
|
|
|
\[ \hat{y}= \begin{cases}
|
|
1 & \text{ if } \phi(z) \ge 0.5 \\
|
|
0 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
If we look at the preceding sigmoid plot, this is equivalent to the following:
|
|
|
|
\[ \hat{y}= \begin{cases}
|
|
1 & \text{ if } \phi(z) \ge 0.0 \\
|
|
0 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
\subsection{Learning the weights of the logistic cost function}
|
|
|
|
In the previous chapter, we defined the sum-squared-error cost function:
|
|
|
|
\[
|
|
J(\mathbf{w}) = \frac{1}{2} \sum_i \bigg( \phi \big( z^{(i)} \big) - y^{(i)} \bigg)^2.
|
|
\]
|
|
|
|
We minimized this in order to learn the weights w for our Adaline classification model. To explain how we can derive the cost function for logistic regression, let's first define the likelihood L that we want to maximize when we build a logistic regression model, assuming that the individual samples in our dataset are independent of one another. The formula is as follows:
|
|
|
|
\[
|
|
L(\mathbf{w}) = P(\mathbf{y} | \mathbf{x}; \mathbf{w}) = \prod_{i=1}^{n} P \big( y^{(i)} | x^{(i)}; \mathbf{w} \big) = \prod_{i=1}^{n} \bigg( \phi \big(z^{(i)} \big) \bigg) ^ {y^{(i)}} \bigg( 1 - \phi \big( z^{(i)} \big) \bigg)^{1-y^{(i)}}
|
|
\]
|
|
|
|
In practice, it is easier to maximize the (natural) log of this equation, which is called
|
|
the log-likelihood function:
|
|
|
|
\[
|
|
l(\mathbf{w}) = \log L(\mathbf{w}) = \sum_{i=1}^{n} \Bigg[ y^{(i)} \log \bigg(\phi \big( z^{(i)} \big) \bigg) + \bigg(1 - y^{(i)} \bigg) \log \bigg( 1 - \phi \big( z^{(i)} \big) \bigg) \Bigg]
|
|
\]
|
|
|
|
Firstly, applying the log function reduces the potential for numerical under ow, which can occur if the likelihoods are very small. Secondly, we can convert the product of factors into a summation of factors, which makes it easier to obtain the derivative of this function via the addition trick, as you may remember
|
|
from calculus.
|
|
|
|
Now we could use an optimization algorithm such as gradient ascent to maximize this log-likelihood function. Alternatively, let's rewrite the log-likelihood as a cost function $J(\cdot)$ that can be minimized using gradient descent as in \textit{Chapter 2, Training Machine Learning Algorithms for Classification}:
|
|
|
|
\[
|
|
J(\mathbf{w}) = \sum_{i=1}^{n} \Bigg[- y^{(i)} \log \bigg(\phi \big( z^{(i)} \big) \bigg) - \bigg(1 - y^{(i)} \bigg) \log \bigg( 1 - \phi \big( z^{(i)} \big) \bigg) \Bigg]
|
|
\]
|
|
|
|
To get a better grasp on this cost function, let's take a look at the cost that we
|
|
calculate for one single-sample instance:
|
|
|
|
\[
|
|
J\big( \phi(z), y; \mathbf{w} \big) = -y \log \big( \phi(z) \big) - (1-y) \log \big(1 - \phi(z) \big).
|
|
\]
|
|
|
|
Looking at the preceding equation, we can see that the rst term becomes zero if
|
|
$y = 0$ , and the second term becomes zero if $y = 1$, respectively:
|
|
|
|
|
|
\[
|
|
J \big( \phi(z), y; \mathbf{w} \big)= \begin{cases}
|
|
- \log \big( \phi(z) \big) \text{ if } y=1\\
|
|
- \log \big( 1 - \phi(z) \big) \text{ if } y=0
|
|
\end{cases}
|
|
\]
|
|
|
|
\subsection{Training a logistic regression model with scikit-learn}
|
|
|
|
If we were to implement logistic regression ourselves, we could simply substitute the cost function $J(\cdot)$ in our Adaline implementation from \textit{Chapter 2, Training Machine Learning Algorithms for Classification}, by the new cost function:
|
|
|
|
\[
|
|
J(\mathbf{w}) = \sum_{i=1}^{n} \Bigg[- y^{(i)} \log \bigg(\phi \big( z^{(i)} \big) \bigg) - \bigg(1 - y^{(i)} \bigg) \log \bigg( 1 - \phi \big( z^{(i)} \big) \bigg) \Bigg]
|
|
\]
|
|
|
|
We can show that the weight update in logistic regression via gradient descent is indeed equal to the equation that we used in Adaline in \textit{Chapter 2, Training Machine Learning Algorithms for Classification}. Let's start by calculating the partial derivative of the log-likelihood function with respect to the $j$th weight:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_j} l(\mathbf{w}) = \Bigg( y \frac{1}{\phi(z)} - (1-y) \frac{1}{1-\phi(z)} \Bigg) \frac{\partial}{\partial w_j} \phi(z)
|
|
\]
|
|
|
|
Before we continue, let's calculate the partial derivative of the sigmoid function first:
|
|
|
|
\[
|
|
\frac{\partial}{\partial z} \phi(z) = \frac{\partial}{\partial z} \frac{1}{1 + e^{-1}} \frac{1}{\big( 1 + e^{-z}\big)^2} e^{-z} = \frac{1}{1 + e^{-z}} = \frac{1}{1 + e^{-z}} \bigg( 1 - \frac{1}{1 + e^{-z}} \bigg) \\\\
|
|
\]
|
|
\[
|
|
= \phi(z)(1-\phi(z)).
|
|
\]
|
|
|
|
Now we can resubstitute $\frac{\partial}{\partial z} \phi(z) = \phi(z)(1-\phi(z))$ in our first equation to obtain the following:
|
|
|
|
\begin{equation*}
|
|
\begin{split}
|
|
& \Bigg( y \frac{1}{\phi(z)} - (1-y) \frac{1}{1-\phi(z)} \Bigg) \frac{\partial}{\partial w_j} \phi(z) \\
|
|
& = \Bigg( y \frac{1}{\phi(z)} - (1-y) \frac{1}{1-\phi(z)} \Bigg) \phi(z) \big(1 - \phi(z)\big) \frac{\partial}{\partial w_j} z \\
|
|
& = \bigg( y \big( 1 - \phi(z) \big) - (1-y) \phi(z) \bigg) x_j \\
|
|
& = \big( y - \phi(z) \big) x_j
|
|
\end{split}
|
|
\end{equation*}
|
|
|
|
Remember that the goal is to find the weights that maximize the log-likelihood so that we would perform the update for each weight as follows:
|
|
|
|
\[
|
|
w_j := w_j + \eta \sum_{i=1}^{n} \bigg( y^{(i)} - \phi(z^{(i)}) \bigg) x_{j}^{(i)}
|
|
\]
|
|
|
|
Since we update all weights simultaneously, we can write the general update rule as follows:
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} + \Delta \mathbf{w}
|
|
\]
|
|
|
|
We define $\Delta \mathbf{w}$ as follows:
|
|
|
|
\[
|
|
\Delta \mathbf{w} = \eta \nabla l (\mathbf{w})
|
|
\]
|
|
|
|
Since maximizing the log-likelihood is equal to minimizing the cost function $J(\cdot)$ that we defined earlier, we can write the gradient descent update rule as follows:
|
|
|
|
\[
|
|
\Delta w_j = - \eta \frac{\partial J}{\partial w_j} = \eta \sum_{i=1}^{n} \bigg( y^{(i)} - \phi(z^{(i)}) \bigg)x_{j}^{(i)}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} + \Delta \mathbf{w}, \; \Delta \mathbf{w} = - \eta \nabla J(\mathbf{w})
|
|
\]
|
|
|
|
This is equal to the gradient descent rule in Adaline in \textit{Chapter 2, Training Machine Learning Algorithms for Classification}.
|
|
|
|
|
|
\subsection{Tackling overfitting via regularization}
|
|
|
|
The most common form of regularization is the so-called L2 regularization (sometimes also called L2 shrinkage or weight decay), which can be written as follows:
|
|
|
|
\[
|
|
\frac{\lambda}{2} \lVert \mathbf{w} \rVert^2 = \frac{\lambda}{2} \sum_{j=1}^m w_{j}^{2}
|
|
\]
|
|
|
|
Here, $\lambda$ is the so-called regularization parameter.
|
|
|
|
In order to apply regularization, we just need to add the regularization term to the cost function that we defined for logistic regression to shrink the weights:
|
|
|
|
\[
|
|
J(\mathbf{w}) = - \sum_{i=1}^{n} \bigg[ y^{(i)} \log \big( \phi(z^{(i)}) \big) - \big( 1 - y ^{(i)} \big) \log \big( 1 - \phi(z^{(i)}) \big) \bigg] + \frac{\lambda}{2} \lVert \mathbf{w}\rVert^2
|
|
\]
|
|
|
|
Then, we have the following regularized weight updates for weight $w_j$:
|
|
|
|
\[
|
|
\Delta w_j = - \eta \frac{\partial J}{\partial w_j} = \eta \sum_{i=1}^{n} \bigg( y^{(i)} - \phi(z^{(i)}) \bigg)x_{j}^{(i)} - \eta \lambda w_j,
|
|
\] for $j \in \{1, 2, ..., m \}$ (i.e., $j \neq 0 $) since we don't regularize the bias unit $w_0$. \\
|
|
|
|
|
|
|
|
|
|
Via the regularization parameter $\lambda$, we can then control how well we fit the training data while keeping the weights small. By increasing the value of $\lambda$, we increase the regularization strength.
|
|
|
|
The parameter \textit{C} that is implemented for the \textit{LogisticRegression} class in scikit-learn comes from a convention in support vector machines, which will be the topic of the next section. \textit{C} is directly related to the regularization parameter $\lambda$ , which is its inverse:
|
|
|
|
\[
|
|
C = \frac{1}{\lambda}
|
|
\]
|
|
|
|
So, we can rewrite the regularized cost function of logistic regression as follows:
|
|
|
|
\[
|
|
J(\mathbf{w}) = C \Bigg[ \sum_{i=1}^{n} \Big( -y^{(i)} \log \big( \phi(z^{(i)} \big) - \big( 1 - y^{(i)} \big) \Big) \log \bigg( 1 - \phi(z^{(i)}) \bigg) \Bigg] + \frac{1}{2} \lVert \mathbf{w} \rVert^2
|
|
\]
|
|
|
|
|
|
|
|
|
|
\section{Maximum margin classification with support vector machines}
|
|
|
|
\subsection{Maximum margin intuition}
|
|
|
|
To get an intuition for the margin maximization, let's take a closer look at those \textit{positive} and \textit{negative} hyperplanes that are parallel to the decision boundary, which can be expressed as follows:
|
|
|
|
\[
|
|
w_0 + \mathbf{w}^T \mathbf{x}_{pos} = 1 \quad (1)
|
|
\]
|
|
|
|
\[
|
|
w_0 + \mathbf{w}^T \mathbf{x}_{neg} = -1 \quad (2)
|
|
\]
|
|
|
|
If we subtract those two linear equations (1) and (2) from each other, we get:
|
|
|
|
\[
|
|
\Rightarrow \mathbf{w}^T \big( \mathbf{x}_{pos} - \mathbf{x}_{neg} \big) = 2
|
|
\]
|
|
|
|
We can normalize this by the length of the vector $\mathbf{w}$, which is defined as follows:
|
|
|
|
\[
|
|
\lVert \mathbf{w} \rVert = \sqrt{\sum_{j=1}^{m} w_{j}^{2}}
|
|
\]
|
|
|
|
So we arrive at the following equation:
|
|
|
|
\[
|
|
\frac{\mathbf{w}^T ( \mathbf{x}_{pos} - \mathbf{x}_{neg} )}{\lVert \mathbf{w} \rVert} = \frac{2}{\lVert \mathbf{w} \rVert}
|
|
\]
|
|
|
|
The left side of the preceding equation can then be interpreted as the distance between the positive and negative hyperplane, which is the so-called margin that we want to maximize.
|
|
|
|
Now the objective function of the SVM becomes the maximization of this margin by maximizing $\frac{2}{\lVert \mathbf{w} \rVert}$ under the constraint that the samples are classi ed correctly, which can be written as follows:
|
|
|
|
|
|
\[
|
|
w_0 + \mathbf{w}^T \mathbf{x}^{(i)} \ge 1 \text{ if } y^{(i)} = 1
|
|
\]
|
|
|
|
\[
|
|
w_0 + \mathbf{w}^T \mathbf{x}^{(i)} < -1 \text{ if } y^{(i)} = -1
|
|
\]
|
|
|
|
These two equations basically say that all negative samples should fall on one side of the negative hyperplane, whereas all the positive samples should fall behind the positive hyperplane. This can also be written more compactly as follows:
|
|
|
|
\[
|
|
y^{(i)} \big( w_0 + \mathbf{w}^T \mathbf{x}^{(i)} \big) \ge 1 \quad \forall_i
|
|
\]
|
|
|
|
In practice, though, it is easier to minimize the reciprocal term $\frac{1}{2} \lVert \mathbf{w} \rVert^2$, which can be solved by quadratic programming.
|
|
|
|
\subsection{Dealing with the nonlinearly separable case using slack variables}
|
|
|
|
The motivation for introducing the slack variable $\xi$ was that the linear constraints need to be relaxed for nonlinearly separable data to allow convergence of the optimization in the presence of misclassifications under the appropriate cost penalization. The positive-values slack variable is simply added to the linear constraints:
|
|
|
|
\[
|
|
\mathbf{w}^T \mathbf{x}^{(i)} \ge 1 - \xi^{(i)} \text{ if } y^{(i)} = 1
|
|
\]
|
|
|
|
\[
|
|
\mathbf{w}^T \mathbf{x}^{(i)} < -1 + \xi^{(i)} \text{ if } y^{(i)} = -1
|
|
\]
|
|
|
|
So the new objective to be minimized (subject to the preceding constraints) becomes:
|
|
|
|
\[
|
|
\frac{1}{2} \lVert \mathbf{w} \rVert^2 + C \Big(\sum_i \xi^{(i)} \Big)
|
|
\]
|
|
|
|
|
|
\subsection{Alternative implementations in scikit-learn}
|
|
\section{Solving nonlinear problems using a kernel SVM}
|
|
|
|
As shown in the next figure, we can transform a two-dimensional dataset onto a new three-dimensional feature space where the classes become separable via the following projection:
|
|
|
|
\[
|
|
\phi(x_1, x_2) = (z_1, z_2, z_3) = (x_1, x_2, x_{1}^{2} + x_{2}^{2})
|
|
\]
|
|
|
|
\subsection{Using the kernel trick to find separating hyperplanes in higher dimensional space}
|
|
|
|
To solve a nonlinear problem using an SVM, we transform the training data onto a higher dimensional feature space via a mapping function $\phi(\cdot)$ and train a linear SVM model to classify the data in this new feature space. Then we can use the same mapping function $\phi(\cdot)$ to transform new, unseen data to classify it using the linear SVM model.
|
|
|
|
However, one problem with this mapping approach is that the construction of the new features is computationally very expensive, especially if we are dealing with high-dimensional data. This is where the so-called kernel trick comes into play. Although we didn't go into much detail about how to solve the quadratic programming task to train an SVM, in practice all we need is to replace the dot product
|
|
|
|
\[
|
|
\mathbf{x}^{(i) \; T} \mathbf{x}^{(j)} \text{ by } \phi \big( \mathbf{x}^{(i)} \big)^T \phi \big( \mathbf{x}^{(j)} \big)
|
|
\]
|
|
|
|
|
|
In order to save the expensive step of calculating this dot product between two points explicitly, we de define a so-called kernel function:
|
|
|
|
\[
|
|
k \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \phi \big( \mathbf{x}^{(i)} \big)^T \phi \big( \mathbf{x}^{(j)} \big)
|
|
\]
|
|
|
|
One of the most widely used kernels is the \textit{Radial Basis Function kernel} (RBF kernel) or Gaussian kernel:
|
|
|
|
\[
|
|
k \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \exp \Bigg( - \frac{ \lVert \mathbf{x}^{(i)} - \mathbf{x}^{(j)} \rVert^2 }{2 \sigma^2} \Bigg)
|
|
\]
|
|
|
|
This is often simplified to:
|
|
|
|
\[
|
|
k \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \exp \bigg( -\gamma\ \lVert \mathbf{x}^{(i)} - \mathbf{x}^{(j)} \rVert^2 \bigg)
|
|
\]
|
|
|
|
Here, $\gamma = \frac{1}{2 \sigma^2}$ is a free parameter that is to be optimized.
|
|
|
|
\section{Decision tree learning}
|
|
|
|
In order to split the nodes at the most informative features, we need to define an objective function that we want to optimize via the tree learning algorithm. Here, our objective function is to maximize the information gain at each split, which we define as follows:
|
|
|
|
\[
|
|
IG(D_p, f) = I(D_p) - \sum_{j=1}^{m} \frac{N_j}{N_p} I(D_j)
|
|
\]
|
|
|
|
Here, $f$ is the feature to perform the split, $D_p$ and $D_j$ are the dataset of the parent $p$ and $j$th child node; $I$ is our impurity measure, $N_p$ is the total number of samples at the parent node, and $N_j$ is the number of samples at the $j$th child node. As we can see, the information gain is simply the difference between the impurity of the parent node and the sum of the child node impurities?the lower the impurity of the child nodes, the larger the information gain. However, for simplicity and to reduce the combinatorial search space, most libraries (including scikit-learn) implement binary decision trees. This means that each parent node is split into two child nodes, $D_{left}$ and $D_{right}$:
|
|
|
|
\[
|
|
IG(D_p, f) = 1 (D_p) - \frac{N_{left}}{N_p} I(D_{left}) - \frac{N_{right}}{N_p} I (D_{right})
|
|
\]
|
|
|
|
Now, the three impurity measures or splitting criteria that are commonly used in
|
|
binary decision trees are \textit{Gini impurity} ($I_G$), \textit{Entropy} ($I_H$) and the \textit{classification error} ($I_E$). Let's start with the definition of Entropy for all non-empty classes $p(i | t) \neq 0$:
|
|
|
|
|
|
\[
|
|
I_H(t) = - \sum_{i=1}^{c} p(i | t) \log_2 p(i|t)
|
|
\]
|
|
|
|
Here, $p(i | t)$ is the proportion of the samples that belongs to class $i$ for a particular node $t$. The entropy is therefore 0 if all samples at a node belong to the same class, and the entropy is maximal if we have a uniform class distribution. For example, in a binary class setting, the entropy is 0 if $p(i=1 | t) = 1$ or $p(i=0| t)=0$. If the classes are distributed uniformly with $p(i=1|t)=0.5$ and $p(i=0|t)=0.5$, the entropy is 1. Therefore, we can say that the entropy criterion attempts to maximize the mutual information in the tree.
|
|
|
|
Intuitively, the Gini impurity can be understood as a criterion to minimize the probability of misclassification:
|
|
|
|
\[
|
|
I_G(t) = \sum_{i=1}^{c} p(i | t) (1 - p (i | t)) = 1 - \sum_{i=1}^{c} p(i|t)^2
|
|
\]
|
|
|
|
Similar to entropy, the Gini impurity is maximal if the classes are perfectly mixed, for example, in a binary class setting ($c = 2 $):
|
|
|
|
\[
|
|
I_G(t) = 1 - \sum_{i=1}^{c} 0.5^2 = 0.5.
|
|
\]
|
|
|
|
...
|
|
|
|
Another impurity measure is the classification error:
|
|
|
|
\[
|
|
I_E(t) = 1 - max \{ p(i|t) \}
|
|
\]
|
|
|
|
\subsection{Maximizing information gain -- getting the most bang for the buck}
|
|
\subsection{Building a decision tree}
|
|
\subsection{Combining weak to strong learners via random forests}
|
|
\section{K-nearest neighbors -- a lazy learning algorithm}
|
|
|
|
The \textit{minkowski} distance that we used in the previous code example is just a generalization of the Euclidean and Manhattan distances that can be written as follows:
|
|
|
|
\[
|
|
d \big(\mathbf{x}^{(i)}, \mathbf{x}^{(j)}\big) = \sqrt[p]{\sum_k \big| x_{k}^{(i)} - x_{k}^{(j)} \big|^p }
|
|
\]
|
|
|
|
|
|
\section{Summary}
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 4
|
|
%%%%%%%%%%%%%%%
|
|
|
|
|
|
\chapter{Building Good Training Sets -- Data Pre-Processing}
|
|
|
|
\section{Dealing with missing data}
|
|
\subsection{Eliminating samples or features with missing values}
|
|
\subsection{Imputing missing values}
|
|
\subsection{Understanding the scikit-learn estimator API}
|
|
\section{Handling categorical data}
|
|
\subsection{Mapping ordinal features}
|
|
\subsection{Encoding class labels}
|
|
\subsection{Performing one-hot encoding on nominal features}
|
|
\section{Partitioning a dataset in training and test sets}
|
|
\section{Bringing features onto the same scale}
|
|
|
|
Now, there are two common approaches to bringing different features onto the same
|
|
scale: \textit{normalization} and \textit{standardization}. Those terms are often used quite loosely
|
|
in different fields, and the meaning has to be derived from the context. Most often,
|
|
\textit{normalization} refers to the rescaling of the features to a range of [0, 1], which is a
|
|
special case of min-max scaling. To normalize our data, we can simply apply the
|
|
min-max scaling to each feature column, where the new value $x_{norm}^{(i)}$ of a sample $x^{(i)}$:
|
|
|
|
\[
|
|
x_{norm}^{(i)} = \frac{x^{(i)} - \mathbf{x}_{min}}{\mathbf{x}_{max} - \mathbf{x}_{min}}
|
|
\]
|
|
|
|
Here, $x^{(i)}$ is a particular sample, $x_{min}$ is the smallest value in a feature column, and $x_{max}$ the largest value, respectively.
|
|
|
|
[...] Furthermore, standardization maintains useful information about outliers and makes the algorithm less sensitive to them in contrast to min-max scaling, which scales
|
|
the data to a limited range of values.
|
|
|
|
The procedure of standardization can be expressed by the following equation:
|
|
|
|
\[
|
|
x_{std}^{(i)} = \frac{x^{(i)} - \mu_{x}}{\sigma_{x}}
|
|
\]
|
|
|
|
Here, $\mu_{x}$ is the sample mean of a particular feature column and $\sigma_{x}$ the corresponding standard deviation, respectively.
|
|
|
|
\section{Selecting meaningful features}
|
|
\subsection{Sparse solutions with L1 regularization}
|
|
|
|
We recall from \textit{Chapter 3, A Tour of Machine Learning Classfiers Using Scikit-learn}, that L2 regularization is one approach to reduce the complexity of a model by penalizing large individual weights, where we defined the L2 norm of our weight vector w as follows:
|
|
|
|
\[
|
|
L2: \lVert \mathbf{w} \rVert^{2}_{2} = \sum_{j=1}^{m} w^{2}_{j}
|
|
\]
|
|
|
|
Another approach to reduce the model complexity is the related \textit{L1 regularization}:
|
|
|
|
\[
|
|
L1: \lVert \mathbf{w} \rVert_{1} = \sum_{j=1}^{m} |w_j|
|
|
\]
|
|
|
|
|
|
\subsection{Sequential feature selection algorithms}
|
|
|
|
Based on the preceding definition of SBS, we can outline the algorithm in 4 simple steps:
|
|
|
|
\begin{enumerate}
|
|
\item Initialize the algorithm with $k=d$, where $d$ is the dimensionality of the full feature space $\mathbf{X}_d$
|
|
\item Determine the feature $x^{-}$ that maximizes the criterion $x^{-} = \text{arg max} J(\mathbf{X_k} - x)$, where $x \in \mathbf{X}_k$.
|
|
\item Remove the feature $x^-$ from the feature set: $\mathbf{X}_{k-l} := \mathbf{X}_k - x^{-}; \quad k:= k-1$.
|
|
\item Terminate if $k$ equals the number of desired features, if not, got to step 2.
|
|
|
|
\end{enumerate}
|
|
|
|
|
|
|
|
|
|
\section{Assessing feature importance with random forests}
|
|
\section{Summary}
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 5
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Compressing Data via Dimensionality Reduction}
|
|
|
|
\section{Unsupervised dimensionality reduction via principal component analysis}
|
|
|
|
When we use PCA for dimensionality reduction, we construct a $d \times k$-dimensional transformation matrix $\mathbf{W}$ that allows us to map a sample vector $\mathbf{x}$ onto a new $k$-dimensional feature subspace that has fewer dimensions than the original $d$-dimensional feature space:
|
|
|
|
\[
|
|
\mathbf{x} = [ x_1, x_2, \dots, x_j], \mathbf{x} \in \mathbb{R}^4
|
|
\]
|
|
|
|
\[
|
|
\downarrow \mathbf{x W}, \quad \mathbf{W} \in \mathbb{R}^{d \times k}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{z} = [z_1, z_2, \dots, z_k], \quad \mathbf{z} \in \mathbb{R}^4
|
|
\]
|
|
|
|
As a result of transforming the original $d$-dimensional data onto this new
|
|
$k$-dimensional subspace (typically $k << d$ ), the rst principal component will have
|
|
the largest possible variance, and all consequent principal components will have the largest possible variance given that they are uncorrelated (orthogonal) to the other principal components. Note that the PCA directions are highly sensitive to data scaling, and we need to standardize the features prior to PCA if the features were measured on different scales and we want to assign equal importance to all features.
|
|
|
|
Before looking at the PCA algorithm for dimensionality reduction in more detail, let's summarize the approach in a few simple steps:
|
|
|
|
\begin{enumerate}
|
|
\item Standardize the $d$-dimensional dataset.
|
|
\item Construct the covariance matrix.
|
|
\item Decompose the covariance matrix into its eigenvectors and eigenvalues.
|
|
\item Select $k$ eigenvectors that correspond to the $k$ largest eigenvalues, where $k$ is the dimensionality of the new feature subspace $(k \le d)$.
|
|
\item Construct a projection matrix $\mathbf{W}$ from the "top" $k$ eigenvectors.
|
|
\item Transform the $d$-dimensional input dataset $\mathbf{X}$ using the projection matrix $\mathbf{W}$ to obtain the new $k$-dimensional feature subspace.
|
|
\end{enumerate}
|
|
|
|
\subsection{Total and explained variance}
|
|
|
|
After completing the mandatory preprocessing steps by executing the preceding code, let's advance to the second step: constructing the covariance matrix. The symmetric $d \times d$ -dimensional covariance matrix, where $d$ is the number of dimensions in the dataset, stores the pairwise covariances between the different features. For example, the covariance between two features $\mathbf{x}_j$ and $\mathbf{x}_k$ on the population level can be calculated via the following equation:
|
|
|
|
\[
|
|
\sigma_{jk} = \frac{1}{n} \sum_{i=1}^{n} \big( x_{j}^{(i)} - \mu_j \big) \big( x_{k}^{(i)} - \mu_k \big)
|
|
\]
|
|
|
|
Here, $\mu_j$ and $\mu_k$ are the sample means of feature $j$ and $k$, respectively. [...] For example, a covariance matrix of three features can then be written as
|
|
|
|
\[
|
|
\Sigma = \begin{bmatrix}
|
|
\sigma_{1}^2 & \sigma_{12} & \sigma_{13} \\
|
|
\sigma_{21} & \sigma_{2}^{2} & \sigma_{23} \\
|
|
\sigma_{31} & \sigma_{32} & \sigma_{3}^{2}
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
[...] an eigenvector $\mathbf{v}$ satisfies the following condition:
|
|
|
|
\[
|
|
\Sigma \mathbf{v} = \lambda \mathbf{v}
|
|
\]
|
|
|
|
Here, $\lambda$ is a scalar: the eigenvector.
|
|
|
|
...
|
|
|
|
The variance explained ratio of an eigenvalue $\lambda_j$ is simply the fraction of an eigenvalue $\lambda_j$ and the total sum of the eigenvalues:
|
|
|
|
\[
|
|
\frac{\lambda_j}{\sum_{j=1}^{d} \lambda_j}
|
|
\]
|
|
|
|
\subsection{Feature transformation}
|
|
|
|
Using the projection matrix, we can now transform a sample $\mathbf{x}$ onto the PCA subspace obtaining $\mathbf{x}'$, a now two-dimensional sample vector consisting of two new features:
|
|
|
|
\[
|
|
\mathbf{x}' = \mathbf{xW}
|
|
\]
|
|
|
|
\subsection{Principal component analysis in scikit-learn}
|
|
|
|
|
|
\section{Supervised data compression via linear discriminant analysis}
|
|
|
|
Before we take a look into the inner workings of LDA in the following subsections, let's summarize the key steps of the LDA approach:
|
|
|
|
\begin{enumerate}
|
|
\item Standardize the $d$-dimensional dataset ($d$ is the number of features).
|
|
\item For each class, compute the $d$ dimensional mean vector.
|
|
\item Construct the between-class scatter matrix $\mathbf{S}_B$ and the within-class scatter matrix $\mathbf{S}_W$.
|
|
\item Compute the eigenvectors and corresponding eigenvalues of the matrix $\mathbf{S}_{W}^{-1} \mathbf{S}_B$.
|
|
\item Choose the $k$ eigenvectors that correspond to the $k$ largest eigenvalues to construct a $d \times k$-dimensional transformation matrix $\mathbf{W}$; the eigenvectors are the columns of this matrix.
|
|
\item Project the samples onto the new feature subspace using the transformation matrix $\mathbf{W}$.
|
|
\end{enumerate}
|
|
|
|
\subsection{Computing the scatter matrices}
|
|
|
|
Each mean vector $\mathbf{m}_i$ stores the mean feature value $\mu_m$ with respect to the samples of class $i$:
|
|
|
|
\[
|
|
\mathbf{m}_i = \frac{1}{n_i} \sum_{x \in D_i}^{c} \mathbf{x}_m
|
|
\]
|
|
|
|
This results in three mean vectors:
|
|
|
|
\[
|
|
\mathbf{m}_i = \begin{bmatrix}
|
|
\mu_{i, \text{alcohol}} \\
|
|
\mu_{i, \text{malic-acid}} \\
|
|
\mu_{i, \text{proline}}
|
|
\end{bmatrix}^T, i \in \{ 1, 2, 3 \}
|
|
\]
|
|
|
|
Using the mean vectors, we can now compute the within-class scatter matrix $\mathbf{S}_W$
|
|
|
|
\[
|
|
\mathbf{S}_W = \sum^{c}_{i=1} \mathbf{S}_i
|
|
\]
|
|
|
|
This is calculated by summing up the individual scatter matrices $S_i$ of each
|
|
individual class $i$:
|
|
|
|
\[
|
|
\mathbf{S}_i = \sum_{x \in D_i}^{c} (\mathbf{x} - \mathbf{m}_i) (\mathbf{x} - \mathbf{m}_i)^T
|
|
\]
|
|
|
|
The assumption that we are making when we are computing the scatter matrices is that the class labels in the training set are uniformly distributed. [...] Thus, we want to scale the individual scatter matrices $\mathbf{S}_i$ before we sum them up as scatter matrix $\mathbf{S}_W$ When we divide the scatter matrices by the number of class samples $\mathbf{N}_i$, we can see that computing the scatter matrix is in fact the same as computing the covariance matrix $\mathbf{Sigma}_i$ The covariance matrix is a normalized version of the scatter matrix:
|
|
|
|
\[
|
|
\Sigma_i = \frac{1}{N_i} \mathbf{S}_W = \frac{1}{N_i} \sum^{c}_{x \in D_i} (\mathbf{x} - \mathbf{m}_i) (\mathbf{x} - \mathbf{m}_i)^T
|
|
\]
|
|
|
|
After we have computed the scaled within-class scatter matrix (or covariance matrix), we can move on to the next step and compute the between-class scatter matrix $\mathbf{S}_B$
|
|
|
|
\[
|
|
\mathbf{S}_B = \sum^{c}_{i=1} N_i (\mathbf{m}_i - \mathbf{m})(\mathbf{m}_i - \mathbf{m})^T
|
|
\]
|
|
|
|
Here, $\mathbf{m}$ is the overall mean that is computed, including samples from all classes.
|
|
|
|
\subsection{Selecting linear discriminants for the new feature subspace}
|
|
\subsection{Projecting samples onto the new feature space}
|
|
|
|
\[
|
|
\mathbf{X'} = \mathbf{XW}
|
|
\]
|
|
|
|
\subsection{LDA via scikit-learn}
|
|
\section{Using kernel principal component analysis for nonlinear mappings}
|
|
\subsection{Kernel functions and the kernel trick}
|
|
|
|
To transform the samples $\mathbf{x} \in \mathbb{R}^d$ onto this higher $k$-dimensional subspace, we defined a nonlinear mapping function $\phi$:
|
|
|
|
\[
|
|
\phi : \mathbb{R}^d \rightarrow \mathbb{R}^k \quad (k >> d)
|
|
\]
|
|
|
|
We can think of $\phi$ as a function that creates nonlinear combinations of the original features to map the original $d$-dimensional dataset onto a larger, $k$-dimensional feature space. For example, if we had feature vector $\mathbf{x} \in \mathbb{R}^d$ ($\mathbf{x}$ is a column vector consisting of $d$ features) with two dimensions ($d=2$), a potential mapping onto a 3D space could be as follows:
|
|
|
|
\[
|
|
\mathbf{x} = [x_1, x_2]^T
|
|
\]
|
|
|
|
\[
|
|
\downarrow \phi
|
|
\]
|
|
|
|
\[
|
|
\mathbf{z} = \bigg[ x_{1}^{2}, \sqrt{2x_1x_2}, x_{2}^{2} \bigg]^T
|
|
\]
|
|
|
|
[...] We computed the covariance between two features $k$ and $j$ as follows:
|
|
|
|
\[
|
|
\sigma_{jk} = \frac{1}{n} \sum_{n}^{i=1} \big( x_{j}^{(i)} - \mu_j \big) \big( x_{k}^{(i)} - \mu_k \big)
|
|
\]
|
|
|
|
Since the standardizing of features centers them at mean zero, for instance, $\mu_j = 0$ and $\mu_k = 0$, we can simplify this equation as follows:
|
|
|
|
\[
|
|
\sigma_{jk} = \frac{1}{n} \sum_{i=1}^{n} x_{j}^{(i)} x_{k}^{(i)}
|
|
\]
|
|
|
|
Note that the preceding equation refers to the covariance between two features; now, let's write the general equation to calculate the covariance matrix $\Sigma$:
|
|
|
|
\[
|
|
\Sigma = \frac{1}{n} \sum_{i=1}^{n} \mathbf{x}^{(i)} \mathbf{x}^{(i)\;T}
|
|
\]
|
|
|
|
Bernhard Scholkopf generalized this approach (B. Scholkopf, A. Smola, and
|
|
K.-R. Muller. \textit{Kernel Principal Component Analysis}. pages 583-588, 1997) so that we can replace the dot products between samples in the original feature space by the nonlinear feature combinations via $\phi$:
|
|
|
|
\[
|
|
\Sigma = \frac{1}{n} \sum_{i=1}^{n} \phi \big( \mathbf{x}^{(i)} \big) \phi \big( \mathbf{x}^{(i)} \big)^T
|
|
\]
|
|
|
|
To obtain the eigenvectors?the principal components?from this covariance matrix,
|
|
we have to solve the following equation:
|
|
|
|
|
|
\begin{equation*}
|
|
\begin{split}
|
|
& \Sigma \mathbf{v} = \lambda \mathbf{v} \\
|
|
& \Rightarrow \frac{1}{n} \sum_{i=1}^{n} \phi \big( \mathbf{x}^{(i)} \big) \phi \big( \mathbf{x}^{(i)} \big)^T \mathbf{v} = \lambda \mathbf{v} \\
|
|
& \Rightarrow \frac{1}{n \lambda} \sum^{n}_{i=1} \phi \big( \mathbf{x}^{(i)} \big) \big( \mathbf{x}^{(i)} \big)^T \mathbf{v} = \frac{1}{n} \sum^{n}_{(i=1)} \mathbf{a}^{(i)} \phi (\mathbf{x}^{(i)})
|
|
\end{split}
|
|
\end{equation*}
|
|
|
|
Here, $\lambda$ and v are the eigenvalues and eigenvectors of the covariance matrix $\Sigma$, and $\mathbf{a}$ can be obtained by extracting the eigenvectors of the kernel (similarity) matrix $\mathbf{K}$ as we will see in the following paragraphs.
|
|
|
|
The derivation of the kernel matrix is as follows:
|
|
|
|
|
|
|
|
\subsection{Implementing a kernel principal component analysis in Python}
|
|
|
|
First, let's write the covariance matrix as in matrix notation, where $\phi(X)$ is an $n \times k$-dimensional matrix:
|
|
|
|
\[
|
|
\Sigma = \frac{1}{n} \sum_{i=1}^{n} \phi \big( \mathbf{x}^{(i)} \big) \big( \mathbf{x}^{(i)} \big)^T = \frac{1}{n} \phi ( \mathbf{X})^T \phi (\mathbf{X})
|
|
\]
|
|
|
|
Now, we can write the eigenvector equation as follows:
|
|
|
|
\[
|
|
mathbf{v} = \frac{1}{n} \sum_{i=1}^{n} \mathbf{a}^{(i)} \phi(\mathbf{x}^{(i)}) = \lambda \phi (\mathbf{X})^T \mathbf{a}
|
|
\]
|
|
|
|
Since $\Sigma \mathbf{v} = \lambda \mathbf{v}$, we get:
|
|
|
|
\[
|
|
\frac{1}{n} \phi (\mathbf{X})^T \phi (\mathbf{X}) \phi (\mathbf{X})^T \mathbf{a} = \lambda \phi (\mathbf{X})^T \mathbf{a}
|
|
\]
|
|
|
|
Multiplying it by $\phi(\mathbf{X})$ on both sides yields the following result:
|
|
|
|
\begin{equation*}
|
|
\begin{split}
|
|
& \frac{1}{n} \phi(\mathbf{X}) \phi(\mathbf{X})^T \phi(\mathbf{X}) \phi(\mathbf{X})^T \mathbf{a} = \lambda \phi(\mathbf{X}) \phi(\mathbf{X})^T \mathbf{a} \\
|
|
& \Rightarrow \frac{1}{n} \phi(\mathbf{X}) \phi(\mathbf{X})^T \mathbf{a} = \lambda \mathbf{a} \\
|
|
& \Rightarrow \frac{1}{n} \mathbf{Ka} = \lambda \mathbf{a}
|
|
\end{split}
|
|
\end{equation*}
|
|
|
|
Here, K is the similarity (kernel) matrix:
|
|
|
|
\[
|
|
\mathbf{K} = \phi (\mathbf{X}) \phi (\mathbf{X})^T
|
|
\]
|
|
|
|
As we recall from the SVM section in \textit{Chapter 3, A Tour of Machine Learning Classifiers Using Scikit-learn}, we use the kernel trick to avoid calculating the pairwise dot products of the samples $\mathbf{x}$ under $\phi$ explicitly by using a kernel function $\kappa(\cdot)$ so that we don't need to calculate the eigenvectors explicitly:
|
|
|
|
[...] The most commonly used kernels are the following ones:
|
|
|
|
\begin{itemize}
|
|
\item The polynomial kernel:
|
|
\[
|
|
\kappa \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \big( \mathbf{x}^{(i)\;T} \mathbf{x}^{(j)} + \theta \big)^p
|
|
\]
|
|
Here, $\theta$ is the threshold and $p$ is the power that has to be specified by the user.
|
|
\item the hyperbolic tangent (sigmoid) kernel:
|
|
\[
|
|
\kappa \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \tanh \big( \eta \mathbf{x}^{(i)\; T} \mathbf{x}^{(j)} + \theta \big)
|
|
\]
|
|
\item The \textit{Radial Basis Function (RBF)} or Gaussian kernel that we will use in the following examples in the next subsection:
|
|
\[
|
|
\kappa \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \exp \Bigg( - \frac{\lVert \mathbf{x}^{(i)} - \mathbf{x}^{(j)} \rVert^2}{2\sigma^2} \Bigg),
|
|
\]
|
|
which is also often written as
|
|
\[
|
|
\kappa \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \exp \big( -\gamma \lVert \mathbf{x}^{(i)} - \mathbf{x}^{(j)} \rVert^2 \big),
|
|
\]
|
|
|
|
where $\gamma = \frac{1}{2 \sigma^2}$.
|
|
|
|
\end{itemize}
|
|
|
|
To summarize what we have discussed so far, we can define the following three steps to implement an RBF kernel PCA:
|
|
|
|
\begin{enumerate}
|
|
\item We compute the kernel (similarity) matrix $\mathbf{K}$, where we need to calculate the following:
|
|
\[
|
|
\kappa \big( \mathbf{x}^{(i)}, \mathbf{x}^{(j)} \big) = \exp \big( -\gamma \lVert \mathbf{x}^{(i)} - \mathbf{x}^{(j)} \rVert^2 \big)
|
|
\]
|
|
We do this for each pair of samples:
|
|
|
|
|
|
\[
|
|
\mathbf{K} = \begin{bmatrix}
|
|
\kappa \big(\mathbf{x}^{(1)},\mathbf{x}^{(1)}\big)& \kappa \big(\mathbf{x}^{(1)},\mathbf{x}^{(2)}\big) & \dots & \kappa \big(\mathbf{x}^{(1)},\mathbf{x}^{(n)}\big) \\
|
|
\kappa \big(\mathbf{x}^{(2)},\mathbf{x}^{(1)}\big) & \kappa \big(\mathbf{x}^{(2)},\mathbf{x}^{(2)}\big) & \dots & \kappa \big(\mathbf{x}^{(2)},\mathbf{x}^{(n)}\big)\\
|
|
\vdots & \vdots & \ddots & \vdots \\
|
|
\kappa \big(\mathbf{x}^{(n)},\mathbf{x}^{(1)}\big) & \kappa \big(\mathbf{x}^{(n)},\mathbf{x}^{(2)}\big) & \dots & \kappa \big(\mathbf{x}^{(n)},\mathbf{x}^{(n)}\big)
|
|
\end{bmatrix}.
|
|
\]
|
|
|
|
For example, if our dataset contains 100 training samples, the symmetric kernel matrix of the pair-wise similarities would be $100 \times 100$ dimensional.
|
|
|
|
\item We center the kernel matrix $\mathbf{K}$ using the following equation:
|
|
|
|
\[
|
|
\mathbf{K}' = \mathbf{K} - 1_n \mathbf{K} - \mathbf{K} - \mathbf{K}1_n + 1_n \mathbf{K}1_n
|
|
\]
|
|
|
|
Here, $1_n$ is an $n \times n$-dimensional matrix (the same dimensions as the kernel matrix) where all values are equal to $\frac{1}{n}$.
|
|
|
|
\item We collect the top $k$ eigenvectors of the centered kernel matrix based on their corresponding eigenvalues, which are ranked by decreasing magnitude. In contrast to standard PCA, the eigenvectors are not the principal component axes but the samples projected onto those axes
|
|
|
|
\end{enumerate}
|
|
|
|
|
|
\subsubsection{Example 1 -- separating half-moon shapes}
|
|
\subsubsection{Example 2 -- separating concentric circles}
|
|
\subsection{Projecting new data points}
|
|
|
|
[...] Thus, if we want to project a new sample $\mathbf{x}'$ onto this principal component axis, we'd need to compute the following:
|
|
|
|
\[
|
|
\phi(\mathbf{x}')^T \mathbf{v}
|
|
\]
|
|
|
|
Fortunately, we can use the kernel trick so that we don't have to calculate the projection $\phi(\mathbf{x}')^T \mathbf{v}$ explicitly. However, it is worth noting that kernel PCA, in contrast to standard PCA, is a memory-based method, which means that we have to reuse the original training set each time to project new samples. We have to calculate the pairwise RBF kernel (similarity) between each $i$th sample in the training dataset and the new sample $\mathbf{x}'$:
|
|
|
|
\[
|
|
\phi(\mathbf{x'})^T \mathbf{v} = \sum_i \mathbf{a}^{(i)} \phi(\mathbf{x'})^T \phi (\mathbf{x^{(i)}})
|
|
\]
|
|
|
|
\[
|
|
= \sum_i \mathbf{a}^{(i)} k (\mathbf{x'}, \mathbf{x}^{(i)})^T
|
|
\]
|
|
|
|
Here, eigenvectors $\mathbf{a}$ and eigenvalues $\lambda$ of the Kernel matrix $\mathbf{K}$ satisfy the following condition in the equation
|
|
|
|
\[
|
|
\mathbf{Ka} = \lambda \mathbf{a}
|
|
\]
|
|
|
|
|
|
|
|
\subsection{Kernel principal component analysis in scikit-learn}
|
|
\section{Summary}
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 6
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Learning Best Practices for Model Evaluation and Hyperparameter Tuning}
|
|
|
|
\section{Streamlining workflows with pipelines}
|
|
\subsection{Loading the Breast Cancer Wisconsin dataset}
|
|
\subsection{Combining transformers and estimators in a pipeline}
|
|
\section{Using k-fold cross-validation to assess model performance}
|
|
\subsection{The holdout method}
|
|
\subsection{K-fold cross-validation}
|
|
\section{Debugging algorithms with learning and validation curves}
|
|
\subsection{Diagnosing bias and variance problems with learning curves}
|
|
\subsection{Addressing overfitting and underfitting with validation curves}
|
|
|
|
\newpage
|
|
|
|
\section{Fine-tuning machine learning models via grid search}
|
|
\subsection{Tuning hyperparameters via grid search}
|
|
\subsection{Algorithm selection with nested cross-validation}
|
|
\section{Looking at different performance evaluation metrics}
|
|
\subsection{Reading a confusion matrix}
|
|
\subsection{Optimizing the precision and recall of a classification model}
|
|
|
|
Both the prediction error (ERR) and accuracy (ACC) provide general information about how many samples are misclassi ed. The error can be understood as the sum of all false predictions divided by the number of total predictions, and the accuracy is calculated as the sum of correct predictions divided by the total number of predictions, respectively:
|
|
|
|
\[
|
|
ERR = \frac{FP + FN}{FP + FN + TP + TN}
|
|
\]
|
|
|
|
(TP = true positives, FP = false positives, TN = true negatives, FN = false negatives)
|
|
|
|
The prediction accuracy can then be calculated directly from the error:
|
|
|
|
\[
|
|
ACC = \frac{TP + TN}{FP + FN + TP + TN} = 1 - ERR
|
|
\]
|
|
|
|
The true \textit{positive rate} (TPR) and \textit{false positive rate} (FPR) are performance metrics that are especially useful for imbalanced class problems:
|
|
|
|
\[
|
|
FPR = \frac{FP}{N} = \frac{FP}{FP + TN}
|
|
\]
|
|
|
|
\[
|
|
TPR = \frac{TP}{P} = \frac{TP}{FN+TP}
|
|
\]
|
|
|
|
\textit{Precision (PRE)} and \textit{recall} (REC) are performance metrics that are related to those true positive and true negative rates, and in fact, recall is synonymous to the true positive rate:
|
|
|
|
\[
|
|
PRE = \frac{TP}{TP + FP}
|
|
\]
|
|
|
|
\[
|
|
REC = TPR = \frac{TP}{P} = \frac{TP}{FN + TP}
|
|
\]
|
|
|
|
In practice, often a combination of precision and recall is used, the so-called \textit{F1-score}:
|
|
|
|
\[
|
|
\text{F1} = 2 \times \frac{PRE \times REC}{PRE + REC}
|
|
\]
|
|
|
|
\subsection{Plotting a receiver operating characteristic}
|
|
\subsection{The scoring metrics for multiclass classification}
|
|
|
|
he micro-average is calculated from the individual true positives, true negatives, false positives, and false negatives of the system. For example, the micro-average of the precision score in a k-class system can be calculated as follows:
|
|
|
|
\[
|
|
PRE_{micro} = \frac{TP_1 + \dots + TP_k}{TP_1 + \dots + TP_k + FP_1 + \dots + FP_k}
|
|
\]
|
|
|
|
The macro-average is simply calculated as the average scores of the different systems:
|
|
|
|
\[
|
|
PRE_{macro} = \frac{PRE_1 + \dots + PRE_k}{k}
|
|
\]
|
|
|
|
\section{Summary}
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 7
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Combining Different Models for Ensemble Learning}
|
|
|
|
\section{Learning with ensembles}
|
|
|
|
To predict a class label via a simple majority or plurality voting, we combine the predicted class labels of each individual classifier $C_j$ and select the class label $\hat{y}$ that received the most votes:
|
|
|
|
\[
|
|
\hat{y} = mode \{ C_1 (\mathbf{x}), C_2 (\mathbf{x}), \dots, C_m (\mathbf{x}) \}
|
|
\]
|
|
|
|
For example, in a binary classification task where $class1 = -1$ and $class2 = +1$, we can write the majority vote prediction as follows:
|
|
|
|
\[
|
|
C(\mathbf{x}) = sign \Bigg[ \sum_{j}^{m} C_j (\mathbf{x} \Bigg] = \begin{cases}
|
|
1 & \text{ if } \sum_j C_j (\mathbf{x}) \ge 0 \\
|
|
-1 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
To illustrate why ensemble methods can work better than individual classifiers alone, let's apply the simple concepts of combinatorics. For the following example, we make the assumption that all $n$ base classifiers for a binary classification task have an equal error rate $\epsilon$. Furthermore, we assume that the classifiers are independent and the error rates are not correlated. Under those assumptions, we can simply express the error probability of an ensemble of base classifiers as a probability
|
|
mass function of a binomial distribution:
|
|
|
|
\[
|
|
P(y \ge k) = \sum_{k}^{n} \binom{n}{k} \epsilon^k (1 - \epsilon)^{n-k} = \epsilon_{\text{ensemble}}
|
|
\]
|
|
|
|
Here, $\binom{n}{k}$ is the binomial coefficient \textit{n choose k}. In other words, we compute the probability that the prediction of the ensemble is wrong. Now let's take a look at a more concrete example of 11 base classifiers ($n=11$) with an error rate of 0.25 ($\epsilon = 0.25$):
|
|
|
|
\[
|
|
P(y \ge k) = \sum_{k=6}^{11} \binom{11}{k} 0.25^k (1 - 0.25)^{11-k} = 0.034
|
|
\]
|
|
|
|
\section{Implementing a simple majority vote classifier}
|
|
|
|
Our goal is to build a stronger meta-classifier that balances out the individual classifiers' weaknesses on a particular dataset. In more precise mathematical terms, we can write the weighted majority vote as follows:
|
|
|
|
\[
|
|
\hat{y} = \text{arg} \max_i \sum_{j=1}^{m} w_j \chi_A \big(C_j (\mathbf{x})=i\big)
|
|
\]
|
|
|
|
Let's assume that we have an ensemble of three base classifiers $C_j ( j \in {0,1})$ and want to predict the class label of a given sample instance x. Two out of three base classi ers predict the class label 0, and one $C_3$ predicts that the sample belongs to class 1. If we weight the predictions of each base classifier equally, the majority vote will predict that the sample belongs to class 0:
|
|
|
|
\[
|
|
C_1(\mathbf{x}) \rightarrow 0, C_2 (\mathbf{x}) \rightarrow 0, C_3(\mathbf{x}) \rightarrow 1
|
|
\]
|
|
|
|
\[
|
|
\hat{y} = mode{0, 0, 1} = 0
|
|
\]
|
|
|
|
Now let's assign a weight of 0.6 to $C_3$ and weight $C_1$ and $C_2$ by a coefficient of 0.2, respectively.
|
|
|
|
\[
|
|
\hat{y} = \text{arg}\max_i \sum_{j=1}^{m} w_j \chi_A \big( C_j(\mathbf{x}) = i \big)
|
|
\]
|
|
|
|
\[
|
|
= \text{arg}\max_i \big[0.2 \times i_0 + 0.2 \times i_0 + 0.6 \times i_1 \big] = 1
|
|
\]
|
|
|
|
More intuitively, since $3 \times 0.2 = 0.6$, we can say that the prediction made by $C_3$ has three times more weight than the predictions by $C_1$ or $C_2$ , respectively. We can write this as follows:
|
|
|
|
\[
|
|
\hat{y} = mode\{0,0,1,1,1\} = 1
|
|
\]
|
|
|
|
[...] The modified version of the majority vote for predicting class labels from probabilities can be written as follows:
|
|
|
|
\[
|
|
\hat{y} = \text{arg} \max_i \sum^{m}_{j=1} w_j p_{ij}
|
|
\]
|
|
|
|
Here, $p_{ij}$ is the predicted probability of the $j$th classifier for class label $i$.
|
|
|
|
To continue with our previous example, let's assume that we have a binary classification problem with class labels $i \in \{0, 1\}$ and an ensemble of three classifiers $C_j (j \in \{1, 2, 3\}$. Let's assume that the classifier $C_j$ returns the following class membership probabilities for a particular sample $\mathbf{x}$:
|
|
|
|
\[
|
|
C_1(\mathbf{x}) \rightarrow [0.9, 0.1], C_2 (\mathbf{x}) \rightarrow [0.8, 0.2], C_3(\mathbf{x}) \rightarrow [0.4, 0.6]
|
|
\]
|
|
|
|
We can then calculate the individual class probabilities as follows:
|
|
|
|
\[
|
|
p(i_0 | \mathbf{x}) = 0.2 \times 0.9 + 0.2 \times 0.8 + 0.6 \times 0.4 = 0.58
|
|
\]
|
|
|
|
\[
|
|
p(i_1 | \mathbf{x}) = 0.2 \times 0.1 + 0.2 \times 0.2 + 0.6 \times 0.06 = 0.42
|
|
\]
|
|
|
|
\[
|
|
\hat{y} = \text{arg} \max_i \big[ p(i_0 | \mathbf{x}), p(i_1 | \mathbf{x}) \big] = 0
|
|
\]
|
|
|
|
\subsection{Combining different algorithms for classification with majority vote}
|
|
\section{Evaluating and tuning the ensemble classifier}
|
|
\section{Bagging -- building an ensemble of classifiers from bootstrap samples}
|
|
\section{Leveraging weak learners via adaptive boosting}
|
|
|
|
[...] The original boosting procedure is summarized in four key steps as follows:
|
|
|
|
\begin{enumerate}
|
|
\item Draw a random subset of training samples $d_1$ without replacement from the training set $D$ to train a weak learner $C_1$.
|
|
\item Draw second random training subset $d_2$ without replacement from the training set and add 50 percent of the samples that were previously misclassified to train a weak learner $C_2$.
|
|
\item Find the training samples $d_3$ in the training set $D$ on which $C_1$ and $C_2$ disagree to train a third weak learner $C_3$
|
|
\item Combine the weak learners $C_1, C_2$, and $C_3$ via majority voting.
|
|
\end{enumerate}
|
|
|
|
[...] Now that have a better understanding behind the basic concept of AdaBoost, let's take a more detailed look at the algorithm using pseudo code. For clarity, we will denote element-wise multiplication by the cross symbol $(\times)$ and the dot product between two vectors by a dot symbol $(\cdot)$, respectively. The steps are as follows:
|
|
|
|
\begin{enumerate}
|
|
\item Set weight vector $\mathbf{w}$ to uniform weights where $\sum_i w_i = 1$.
|
|
\item For $j$ in $m$ boosting rounds, do the following:
|
|
\begin{enumerate}
|
|
\item Train a weighted weak learner: $C_j = train(\mathbf{X, y, w})$.
|
|
\item Predict class labels: $\hat{y} = predict(C_j, \mathbf{X})$.
|
|
\item Compute the weighted error rate: $\epsilon = \mathbf{w} \cdot (\mathbf{\hat{y}} \neq \mathbf{y})$.
|
|
\item Compute the coefficient $\alpha_j$: $\alpha_j=0.5 \log \frac{1 - \epsilon}{\epsilon}$.
|
|
\item Update the weights: $\mathbf{w} := \mathbf{w} \times \exp \big( -\alpha_j \times \mathbf{\hat{y}} \times \mathbf{y} \big)$.
|
|
\item Normalize weights to sum to 1: $\mathbf{w}:= \mathbf{w} / \sum_i w_i$.
|
|
\end{enumerate}
|
|
\item Compute the final prediction: $\mathbf{\hat{y}} = \big( \sum^{m}_{j=1} \big( \mathbf{\alpha}_j \times predict(C_j, \mathbf{X}) \big) > 0 \big)$.
|
|
\end{enumerate}
|
|
|
|
Note that the expression ($\mathbf{\hat{y}} == \mathbf{y}$) in step 5 refers to a vector of 1s and 0s, where a 1 is assigned if the prediction is incorrect and 0 is assigned otherwise.
|
|
|
|
\begin{table}[!htbp]
|
|
\centering
|
|
\caption*{}
|
|
\label{}
|
|
\begin{tabular}{r | c c c c c | l}
|
|
\hline
|
|
Sample indices & x & y & Weights & $\hat{y}$(x $\le$ 3.0)? & Correct? & Updated weights \\ \hline
|
|
1 & 1.0 & 1 & 0.1 & 1 & Yes & 0.072 \\
|
|
2 & 2.0 & 1 & 0.1 & 1 & Yes & 0.072 \\
|
|
3 & 3.0 & 1 & 0.1 & 1 & Yes & 0.072 \\
|
|
4 & 4.0 & -1 & 0.1 & -1 & Yes & 0.072 \\
|
|
5 & 5.0 & -1 & 0.1 & -1 & Yes & 0.072 \\
|
|
6 & 6.0 & -1 & 0.1 & -1 & Yes & 0.072 \\
|
|
7 & 7.0 & 1 & 0.1 & -1 & No & 0.167 \\
|
|
8 & 8.0 & 1 & 0.1 & -1 & No & 0.167 \\
|
|
9 & 9.0 & 1 & 0.1 & -1 & No & 0.167 \\
|
|
10 & 10.0 & -1 & 0.1 & -1 & Yes & 0.072 \\ \hline
|
|
\end{tabular}
|
|
\end{table}
|
|
|
|
Since the computation of the weight updates may look a little bit complicated at rst, we will now follow the calculation step by step. We start by computing the weighted error rate $\epsilon$ as described in step 5:
|
|
|
|
\[
|
|
\epsilon = 0.1\times 0+0.1\times 0+0.1 \times 0+0.1 \times 0+0.1 \times 0+0.1 \times 0+0.1\times 1+0.1 \times 1 + 0.1 \times 1+0.1 \times 0
|
|
\]
|
|
\[
|
|
= \frac{3}{10} = 0.3
|
|
\]
|
|
|
|
Next we compute the coefficient $\alpha_j$ (shown in step 6), which is later used in step 7 to update the weights as well as for the weights in majority vote prediction (step 10):
|
|
|
|
\[
|
|
\alpha_j = 0.5 \log \Bigg( \frac{1 - \epsilon}{\epsilon} \Bigg) \approx 0.424
|
|
\]
|
|
|
|
After we have computed the coefficient $\alpha_j$ we can now update the weight vector using the following equation:
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} \times \exp ( -\alpha_j \times \mathbf{\hat{y}} \times \mathbf{y})
|
|
\]
|
|
|
|
Here, $\mathbf{\hat{y}} \times \mathbf{y}$ is an element-wise multiplication between the vectors of the predicted and true class labels, respectively. Thus, if a prediction $\hat{y}_i$ is correct, $\hat{y}_i \times y_i$ will have a positive sign so that we decrease the $i$th weight since $\alpha_j$ is a positive number as well:
|
|
|
|
\[
|
|
0.1 \times \exp (-0.424 \times 1 \times 1) \approx 0.065
|
|
\]
|
|
|
|
Similarly, we will increase the $i$th weight if $\hat{y}_i$ predicted the label incorrectly
|
|
like this:
|
|
|
|
\[
|
|
0.1 \times \exp (-0.424 \times 1 \times (-1)) \approx 0.153
|
|
\]
|
|
|
|
Or like this:
|
|
|
|
\[
|
|
0.1 \times \exp (-0.424 \times (-1) \times 1) \approx 0.153
|
|
\]
|
|
|
|
After we update each weight in the weight vector, we normalize the weights so that they sum up to 1 (step 8):
|
|
|
|
\[
|
|
\mathbf{w} := \frac{\mathbf{w}}{\sum_i w_i}
|
|
\]
|
|
|
|
Here, $\sum_i w_i = 7 \times 0.065 + 3 \times 0.153 = 0.914$.
|
|
|
|
Thus, each weight that corresponds to a correctly classified sample will be reduced from the initial value of $0.1$ to $0.065 / 0.914 \approx 0.071$ for the next round of boosting. Similarly, the weights of each incorrectly classified sample will increase from $0.1$ to $0.153 / 0.914 \approx 0.167$.
|
|
|
|
\section{Summary}
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 8
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Applying Machine Learning to Sentiment Analysis}
|
|
|
|
\section{Obtaining the IMDb movie review dataset}
|
|
\section{Introducing the bag-of-words model}
|
|
\subsection{Transforming words into feature vectors}
|
|
\subsection{Assessing word relevancy via term frequency-inverse document frequency}
|
|
|
|
The \textit{tf-idf} can be defined as the product of the \textit{term frequency} and the \textit{inverse document frequency}:
|
|
|
|
\[
|
|
\text{tf-idf}(t, d) = \text{tf} (t, d) \times \text{idf}(t, d)
|
|
\]
|
|
|
|
Here the $\text{tf}(t, d)$ is the term frequency that we introduced in the previous section,
|
|
and the inverse document frequency $\text{idf}(t, d)$ can be calculated as:
|
|
|
|
\[
|
|
\text{idf}(t, d) = \log \frac{n_d}{1 + \text{df}(d, t)},
|
|
\]
|
|
|
|
where $n_d$ is the total number of documents, and $\text{df}(d, t)$ is the number of documents $d$ that contain the term $t$. Note that adding the constant 1 to the denominator is optional and serves the purpose of assigning a non-zero value to terms that occur in all training samples; the log is used to ensure that low document frequencies are not given too much weight.
|
|
|
|
However, if we'd manually calculated the tf-idfs of the individual terms in our feature vectors, we'd have noticed that the \textit{TfidfTransformer} calculates the tf-idfs slightly differently compared to the standard textbook equations that we defined earlier. The equations for the idf and tf-idf that were implemented in scikit-learn are:
|
|
|
|
\[
|
|
\text{idf}(t, d) = \log \frac{1 + n_d}{1 + \text{df}(d, t)}
|
|
\]
|
|
|
|
The tf-idf equation that was implemented in scikit-learn is as follows:
|
|
|
|
\[
|
|
\text{tf-idf(t, d)} = \text{tf}(t, d) \times (\text{idf} (t, d) + 1).
|
|
\]
|
|
|
|
While it is also more typical to normalize the raw term frequencies before calculating the tf-idfs, the \textit{TfidfTransformer} normalizes the tf-idfs directly. By default (\text{norm='l2'}), scikit-learn's \textit{TfidfTransformer} applies the L2-normalization, which returns a vector of length 1 by dividing an un-normalized feature vector $\mathbf{v}$ by its L2-norm:
|
|
|
|
\[
|
|
\mathbf{v}_{norm} = \frac{\mathbf{v}}{\lVert \mathbf{v} \rVert}_2 = \frac{\mathbf{v}}{\sqrt{v_{1}^{2} + v_{2}^{2} + \cdots + v_{n}^{2}}} = \frac{\mathbf{v}}{ \big( \sum_{i=1}^{n} v_{i}^{2} \big)^{1/2} }
|
|
\]
|
|
|
|
\subsection{Cleaning text data}
|
|
\subsection{Processing documents into tokens}
|
|
\section{Training a logistic regression model for document classification}
|
|
\section{Working with bigger data - online algorithms and out-of-core learning}
|
|
\section{Summary}
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 9
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Embedding a Machine Learning Model into a Web Application}
|
|
|
|
\section{Chapter 8 recap - Training a model for movie review classification}
|
|
\section{Serializing fitted scikit-learn estimators}
|
|
\section{Setting up a SQLite database for data storage Developing a web application with Flask}
|
|
\section{Our first Flask web application}
|
|
\subsection{Form validation and rendering}
|
|
\subsection{Turning the movie classifier into a web application}
|
|
\section{Deploying the web application to a public server}
|
|
\subsection{Updating the movie review classifier}
|
|
\section{Summary}
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 10
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Predicting Continuous Target Variables with Regression Analysis}
|
|
|
|
\section{Introducing a simple linear regression model}
|
|
|
|
The goal of simple (univariate) linear regression is to model the relationship between a single feature (explanatory variable x) and a continuous valued \textit{response} (target variable \textit{y}). The equation of a linear model with one explanatory variable is defined as follows:
|
|
|
|
\[
|
|
y = w_0 + w_1 + x
|
|
\]
|
|
|
|
Here, the weight $w_0$ represents the $y$ axis intercepts and $w_1$ is the coefficient of the explanatory variable.
|
|
|
|
[...] The special case of one explanatory variable is also called \textit{simple linear regression}, but of course we can also generalize the linear regression model to multiple explanatory variables. Hence, this process is called \textit{multiple linear regression}:
|
|
|
|
\[
|
|
y = w_0 x_0 + w_1 x_1 + \cdots + w_m x_m = \sum_{i=0}^{m} w_i x_i = \mathbf{w}^T \mathbf{x}
|
|
\]
|
|
|
|
Here, $w_0$ is the $y$-axis intercept with $x_0$ =1.
|
|
|
|
\section{Exploring the Housing Dataset}
|
|
\subsection{Visualizing the important characteristics of a dataset}
|
|
|
|
The correlation matrix is a square matrix that contains the Pearson product-moment correlation coeffcients (often abbreviated as Pearson's $r$), which measure the linear dependence between pairs of features. The correlation coefficients are bounded to the range $-1$ and $1$. Two features have a perfect positive correlation if $r =1$, no correlation if $r = 0$, and a perfect negative correlation if $r = ?1$, respectively. As mentioned previously, Pearson's correlation coefficient can simply be calculated as the covariance between two features $x$ and $y$ (numerator) divided by the product of their standard deviations (denominator):
|
|
|
|
\[
|
|
r = \frac{\sum_{i=1}^{n} \Big[ \big( x^{(i)} - \mu_x \big) \big( y^{(i)} - \mu_y \big) \Big] }{ \sqrt{\sum_{i=1}^{n} \big( x^{(i)} - \mu_x \big)^2} \sqrt{\sum_{i=1}^{n} \big( y^{(i)} - \mu_y \big)^2}} = \frac{\sigma_{xy}}{\sigma_x \sigma_y}
|
|
\]
|
|
|
|
Here, $\mu$ denotes the sample mean of the corresponding feature, $\sigma_{xy}$ is the covariance between the features $x$ and $y$, and $\sigma_x$ and $\sigma_y$ are the features'
|
|
standard deviations, respectively.
|
|
|
|
We can show that the covariance between standardized features is in fact equal to their linear correlation coefficient. Let's first standardize the features $x$ and $y$, to obtain their $z$-scores which we will denote as $x'$ and $y'$ , respectively:
|
|
|
|
\[
|
|
x' = \frac{x-\mu_x}{\sigma_x}, \; y' = \frac{y - \mu_y}{\sigma_y}
|
|
\]
|
|
|
|
Remember that we calculate the (population) covariance between two features as follows:
|
|
|
|
\[
|
|
\sigma_xy = \frac{1}{n} \sum_{i}^{n} \big( x^{(i)} - \mu_x \big) \big( y^{(i)} - \mu_y \big)
|
|
\]
|
|
|
|
Since standardization centers a feature variable at mean 0, we can now calculate the covariance between the scaled features as follows:
|
|
|
|
\[
|
|
\sigma'_{xy} = \frac{1}{n} \sum_{i}^{n} (x' - 0)(y' - 0)
|
|
\]
|
|
|
|
Through resubstitution, we get the following result:
|
|
|
|
\[
|
|
\frac{1}{n} \sum_{i}^{n} \Big( \frac{x - \mu_x}{\sigma_x} \Big) \Big( \frac{y - \mu_y}{\sigma_y} \Big)
|
|
\]
|
|
|
|
\[
|
|
= \frac{1}{n \cdot \sigma_x \sigma_y} \sum^{n}_{i} \sum_{i}^{n} \big(x^{(i)} - \mu_x \big) \big(y^{(i)} - \mu_y \big)
|
|
\]
|
|
|
|
We can simplify it as follows:
|
|
|
|
\[
|
|
\sigma'_{xy} = \frac{\sigma_{xy}}{\sigma_x \sigma_y}
|
|
\]
|
|
|
|
\section{Implementing an ordinary least squares linear regression model}
|
|
\subsection{Solving regression for regression parameters with gradient descent}
|
|
|
|
Consider our implementation of the \textit{ADAptive LInear NEuron (Adaline)} from \textit{Chapter 2, Training Machine Learning Algorithms for Classifcation}; we remember that the artificial neuron uses a linear activation function and we defined a cost function $J (\cdot)$, which we minimized to learn the weights via optimization algorithms, such as \textit{Gradient Descent (GD)} and \textit{Stochastic Gradient Descent (SGD)}. This cost function in Adaline is the \textit{Sum of Squared Errors (SSE)}. This is identical to the OLS cost function that we defined:
|
|
|
|
\[
|
|
J(w) = \frac{1}{2} \sum_{i=1}^{n} \big( y^{(i)} - \hat{y}^{(i)} \big)^2
|
|
\]
|
|
|
|
Here, $\hat{y}$ is the predicted value $\hat{y} = \mathbf{w}^T\mathbf{x}$ (note that the term $1/2$ is just used for convenience to derive the update rule of GD). Essentially, OLS linear regression can be understood as Adaline without the unit step function so that we obtain continuous target values instead of the class labels $-1$ and $1$.
|
|
|
|
[...] As an alternative to using machine learning libraries, there is also
|
|
a closed-form solution for solving OLS involving a system of linear equations that can be found in most introductory statistics textbooks:
|
|
|
|
\[
|
|
\mathbf{w} = (\mathbf{X}^T \mathbf{X})^{(-1)} \mathbf{X}^T \mathbf{y}
|
|
\]
|
|
|
|
\subsection{Estimating the coefficient of a regression model via scikit-learn}
|
|
\section{Fitting a robust regression model using RANSAC}
|
|
\section{Evaluating the performance of linear regression models}
|
|
|
|
Another useful quantitative measure of a model's performance is the so-called \textit{Mean Squared Error (MSE)}, which is simply the average value of the SSE cost function that we minimize to fit the linear regression model. The MSE is useful to for comparing different regression models or for tuning their parameters via a grid search and cross-validation:
|
|
|
|
\[
|
|
MSE = \frac{1}{n} \sum_{i=1}^{n} \big( y^{(i)} - \hat{y}^{(i)} \big)^2
|
|
\]
|
|
|
|
[...] Sometimes it may be more useful to report the coef cient of determination ($R^2$), which can be understood as a standardized version of the MSE, for better interpretability of the model performance. In other words, $R^2$ is the fraction of response variance that is captured by the model. The $R^2$ value is defined as follows:
|
|
|
|
\[
|
|
R^2 = 1 - \frac{SSE}{SST}
|
|
\]
|
|
|
|
Here, SSE is the sum of squared errors and SST is the total sum of squares $SST = \sum^{n}_{i=1} \big( y^{(i)} - \mu_y \big)^2$, or in other words, it is simply the variance of the response. Let's quickly show that $R^2$ is indeed just the rescaled version of the MSE:
|
|
|
|
\[
|
|
R^2 = 1 - \frac{SSE}{SST}
|
|
\]
|
|
|
|
\[
|
|
= 1 - \frac{\frac{1}{n} \sum^{n}_{i=1} \big( y^{(i)} - \hat{y}^{(i)} \big)^2 }{\frac{1}{n} \sum_{i=1}^{n} \big( y^{(i)} - \mu_y \big)^2 }
|
|
\]
|
|
|
|
\[
|
|
= 1 - \frac{MSE}{Var(y)}
|
|
\]
|
|
|
|
For the training dataset, $R^2$ is bounded between 0 and 1, but it can become negative for the test set. If $R^2$ =1, the model fits the data perfectly with a
|
|
corresponding $MSE = 0$.
|
|
|
|
\section{Using regularized methods for regression}
|
|
|
|
The most popular approaches to regularized linear regression are the so-called \textit{Ridge Regression}, \textit{Least Absolute Shrinkage and Selection Operator (LASSO)}, and the \textit{Elastic Net} method.
|
|
|
|
Ridge regression is an L2 penalized model where we simply add the squared sum of the weights to our least-squares cost function:
|
|
|
|
\[
|
|
J(\mathbf{w})_{ridge} = \sum^{n}_{i=1} \big( y^{(i)} - \hat{y}^{(i)} \big)^2 + \lambda \lVert \mathbf{w} \rVert^{2}_{2}
|
|
\]
|
|
|
|
Here:
|
|
|
|
\[
|
|
\text{L2}: \quad \lambda \lVert \mathbf{w} \rVert^{2}_{2} = \lambda \sum^{m}_{j=1} w_{j}^{2}
|
|
\]
|
|
|
|
By increasing the value of the hyperparameter $\lambda$ , we increase the regularization strength and shrink the weights of our model. Please note that we don't regularize the intercept term $w_0$.
|
|
|
|
An alternative approach that can lead to sparse models is the LASSO. Depending on the regularization strength, certain weights can become zero, which makes the LASSO also useful as a supervised feature selection technique:
|
|
|
|
\[
|
|
J(\mathbf{w})_{LASSO} = \sum^{n}_{i=1} \big( y^{(i)} - \hat{y}^{(i)} \big)^2 + \lambda \lVert w \rVert_1
|
|
\]
|
|
|
|
Here:
|
|
|
|
\[
|
|
L1: \quad \lambda \lVert \mathbf{w} \rVert_1 = \lambda \sum^{m}_{j=1} | w_j |
|
|
\]
|
|
|
|
However, a limitation of the LASSO is that it selects at most $n$ variables if $m > n$. A compromise between Ridge regression and the LASSO is the Elastic Net, which has a L1 penalty to generate sparsity and a L2 penalty to overcome some of the limitations of the LASSO, such as the number of selected variables.
|
|
|
|
\[
|
|
J(\mathbf{w})_{ElasticNet} = \sum_{i=1}^{n} \big( y^{(i)} - \hat{y}^{(i)} \big)^2 + \lambda_1 \sum^{m}_{j=1} w_{j}^2+ \lambda_2 \sum^{m}_{j=1} |w_j|
|
|
\]
|
|
|
|
\section{Turning a linear regression model into a curve - polynomial regression}
|
|
|
|
In the previous sections, we assumed a linear relationship between explanatory and response variables. One way to account for the violation of linearity assumption is to use a polynomial regression model by adding polynomial terms:
|
|
|
|
\[
|
|
y = w_0 + w_1 x + w_2 x^2 + \dots + w_d x^d,
|
|
\]
|
|
|
|
where $d$ denotes the degree of the polynomial.
|
|
|
|
\subsection{Modeling nonlinear relationships in the Housing Dataset}
|
|
\subsection{Dealing with nonlinear relationships using random forests}
|
|
\subsubsection{Decision tree regression}
|
|
|
|
When we used decision trees for classi cation, we defined entropy as a measure of impurity to determine which feature split maximizes the \textit{Information Gain (IG)}, which can be defined as follows for a binary split:
|
|
|
|
\[
|
|
IG(D_p, x_i) = I(D_p) - \frac{N_{left}}{N_{p}} I (D_{left}) - \frac{N_{right}}{N_p} I (D_{right})
|
|
\]
|
|
|
|
To use a decision tree for regression, we will replace entropy as the impurity measure of a node $t$ by the MSE:
|
|
|
|
\[
|
|
I(t) - MSE(t) = \frac{1}{N_t} \sum_{i \in D_t} \big( y^{(i)} - \hat{y}_t \big)^2
|
|
\]
|
|
|
|
Here, $N_t$ is the number of training samples at node $t$, $D_t$ is the training subset at node $t$, $y^{(i)}$ is the true target value, and $\hat{y}^{(i)}$ is the predicted target value (sample mean):
|
|
|
|
\[
|
|
\hat{y}_t = \frac{1}{N} \sum_{i \in D_t} y^{(i)}
|
|
\]
|
|
|
|
In the context of decision tree regression, the MSE is often also referred to as within-node variance, which is why the splitting criterion is also better known
|
|
as \textit{variance reduction}.
|
|
|
|
\subsubsection{Random forest regression}
|
|
\section{Summary}
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 11
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Working with Unlabeled Data -- Clustering Analysis}
|
|
|
|
|
|
\section{Grouping objects by similarity using k-means}
|
|
|
|
Thus, our goal is to group the samples based on their feature similarities, which we can be achieved using the k-means algorithm that can be summarized by the following four steps:
|
|
|
|
\begin{enumerate}
|
|
\item Randomly pick $k$ centroids from the sample points as initial cluster centers.
|
|
\item Assign each sample to the nearest centroid $\mu^{(j)}, \quad j \in {1, ..., k}.$
|
|
\item Move the centroids to the center of the samples that were assigned to it.
|
|
\item Repeat steps 2 and 3 until the cluster assignments do not change or a user-defined tolerance or a maximum number of iterations is reached.
|
|
\end{enumerate}
|
|
|
|
Now the next question is \textit{how do we measure similarity between objects?} We can de ne similarity as the opposite of distance, and a commonly used distance for clustering samples with continuous features is the \textit{squared Euclidean distance} between two points $\mathbf{x}$ and $\mathbf{y}$ in $m$-dimensional space:
|
|
|
|
\[
|
|
d(\mathbf{x}, \mathbf{y})^2 = \sum_{j=1}^{m} \big(x_j - y_j \big)^2 = \lVert \mathbf{x} - \mathbf{y} \rVert^{2}_{2}.
|
|
\]
|
|
|
|
Note that, in the preceding equation, the index $j$ refers to the $j$th dimension
|
|
(feature column) of the sample points x and y. In the rest of this section, we will use the superscripts $i$ and $j$ to refer to the sample index and cluster index, respectively.
|
|
|
|
|
|
Based on this Euclidean distance metric, we can describe the k-means algorithm
|
|
as a simple optimization problem, an iterative approach for minimizing the \textit{within-cluster sum of squared errors (SSE)}, which is sometimes also called \textit{cluster inertia}:
|
|
|
|
\[
|
|
SSE = \sum_{i=1}^{n} \sum^{k}_{j=1} w^{(i, j)} \big \lVert \mathbf{x}^{(i)} - \mu^{(j)} \big \rVert^{2}_{2}
|
|
\]
|
|
|
|
Here, $\mu^{(j)}$ is the representative point (centroid) for cluster $j$, and $w^{(i, j)} = 1$ if the sample $\mathbf{x}^{(i)}$ is in cluster $j$; $w^{(i, j)}=0$ otherwise.
|
|
|
|
\subsection{K-means++}
|
|
|
|
[...] The initialization in k-means++ can be summarized as follows:
|
|
\begin{enumerate}
|
|
\item Initialize an empty set $M$ to store the $k$ centroids being selected.
|
|
\item Randomly choose the first centroid $\mu^{(j)}$ from the input samples and assign it to $M$
|
|
\item For each sample $\mathbf{x}^{(i)}$ that is not in $M$, find the minimum distance $d \big( x^{(i)}, M \big)^2$ to any of the centroids in $M$.
|
|
\item To randomly select the next centroid $\mu^{(p)}$, use a weighted probability distribution equal to $\frac{d(\mu^{(p)}, M)^2 }{\sum_i d(x^{(i)}M)^2}$
|
|
\item Repeat steps 2 and 3 until $k$ centroids are chosen.
|
|
\item Proceed with the classic \textit{k}-means algorithm.
|
|
\end{enumerate}
|
|
|
|
\subsection{Hard versus soft clustering}
|
|
|
|
The $fuzzy c-means (FCM)$ procedure is very similar to k-means. However, we replace the hard cluster assignment by probabilities for each point belonging to each cluster. In $k$-means, we could express the cluster membership of a sample $x$ by a sparse vector of binary values:
|
|
|
|
\[
|
|
\begin{bmatrix}
|
|
\mathbf{\mu}^{(1)} \rightarrow 0 \\
|
|
\mathbf{\mu}^{(2)} \rightarrow 1 \\
|
|
\mathbf{\mu}^{(3)} \rightarrow 0
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
Here, the index position with value 1 indicates the cluster centroid $\mathbf{\mu}^{(j)}$ the sample is assigned to (assuming $k=3, \; j \in \{ 1, 2, 3 \}$). In contrast, a membership vector in FCM could be represented as follows:
|
|
|
|
\[
|
|
\begin{bmatrix}
|
|
\mathbf{\mu}^{(1)} \rightarrow 0.1 \\
|
|
\mathbf{\mu}^{(2)} \rightarrow 0.85 \\
|
|
\mathbf{\mu}^{(3)} \rightarrow 0.05
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
Here, each value falls in the range $[0, 1]$ and represents a probability of membership to the respective cluster centroid. The sum of the memberships for a given sample is equal to 1. Similarly to the k-means algorithm, we can summarize the FCM algorithm in four key steps:
|
|
|
|
\begin{enumerate}
|
|
\item Specify the number of $k$ centroids and randomly assign the cluster memberships for each point.
|
|
\item Compute the cluster centroids $\mathbf{\mu^{(j)}}, j \in \{1, \dots, k \}$.
|
|
\item Update the cluster memberships for each point.
|
|
\item Repeat steps 2 and 3 until the membership coefficients do not change or a user-defined tolerance or a maximum number of iterations is reached.
|
|
\end{enumerate}
|
|
|
|
The objective function of FCM -- we abbreviate it by $J_m$ -- looks very similar to the within cluster sum-squared-error that we minimize in $k$-means:
|
|
|
|
\[
|
|
J_m = \sum_{i=1}^{n} \sum_{j=1}^{k} w^{m(i, j)} \big \lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(j)} \big \rVert^{2}_{2} \; m \in [1, \infty)
|
|
\]
|
|
|
|
However, note that the membership indicator $w^{(i, j)}$ is not a binary value as in $k$-means $\big( w^{(i, j)} \in \{0, 1\} \big)$ but a real value that denotes the cluster membership probability $\big( w^{(i, j)} \in [0, 1] \big).$ You also may have noticed that we added an additional exponent to $w^{(i, j)}$; the exponent $m$, any number greater or equal to 1 (typically $m=2$), is the so-called \textit{fuzziness coefficient} (or simply \textit{fuzzifier}) that controls the degree of \textit{fuzziness}. The larger the value of $m$, the smaller the cluster membership $w^{(i, j)}$ becomes, which leads to fuzzier clusters. The cluster membership probability itself is calculated as follows:
|
|
|
|
\[
|
|
w^{(i, j)} = \Bigg[ \sum^{k}_{p=1} \Bigg( \frac{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(j)} \rVert_2}{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(p)} \rVert_2} \Bigg)^{\frac{2}{m-1}} \Bigg]^{-1}
|
|
\]
|
|
|
|
For example, if we chose three cluster centers as in the previous $k$-means example, we could calculate the membership of the $\mathbf{x}^{(i)}$ sample belonging to its own cluster:
|
|
|
|
\[
|
|
w^{(i, j)} = \Bigg[ \sum^{k}_{p=1} \Bigg( \frac{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(j)} \rVert_2}{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(1)} \rVert_2} \Bigg)^{\frac{2}{m-1}} + \sum^{k}_{p=1} \Bigg( \frac{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(j)} \rVert_2}{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(2)} \rVert_2} \Bigg)^{\frac{2}{m-1}} + \sum^{k}_{p=1} \Bigg( \frac{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(j)} \rVert_2}{\lVert \mathbf{x}^{(i)} - \mathbf{\mu}^{(3)} \rVert_2} \Bigg)^{\frac{2}{m-1}} \Bigg]^{-1}
|
|
\]
|
|
|
|
The center $\mu^{(j)}$ of a cluster itself is calculated as the mean of all samples in the cluster weighted by the membership degree of belonging to its own cluster:
|
|
|
|
\[
|
|
\mathbf{\mu}^{(j)} = \frac{\sum_{i=1}^{n} w^{m(i, j)} \mathbf{x}^{(i)}}{\sum_{i=1}^{n} w^{m(i, j)}}
|
|
\]
|
|
|
|
\subsection{Using the elbow method to find the optimal number of clusters}
|
|
\subsection{Quantifying the quality of clustering via silhouette plots}
|
|
|
|
To calculate the \textit{silhouette coefficient} of a single sample in our dataset, we can apply the following three steps:
|
|
|
|
\begin{enumerate}
|
|
\item Calculate the cluster cohesion $a^{(i)}$ as the average distance between a sample $\mathbf{x}^{(i)}$ and all other points in the same cluster.
|
|
\item Calculate the cluster separation $b^{(i)}$ from the next closest cluster as the average distance between the sample $\mathbf{x}^{(i)}$ and all samples in the nearest cluster.
|
|
\item Calculate the silhouette $s^{(i)}$ as the difference between cluster cohesion and separation divided by the greater of the two, as shown here:
|
|
\[
|
|
s^{(i)} = \frac{b^{(i)} - a^{(i)}}{\max \{ b^{(i)}, a^{(i)} \}}.
|
|
\]
|
|
\end{enumerate}
|
|
|
|
The silhouette coefficient is bounded in the range $-1$ to $1$. Based on the preceding formula, we can see that the silhouette coefficient is 0 if the cluster separation
|
|
and cohesion are equal $(b^{(i)} = a^{(i)})$. Furthermore, we get close to an ideal silhouette coefficient of $1$ if $b^{(i)} >> a^{(i)}$, since $b^{(i)}$ quantifies how dissimilar a sample is to other clusters, and $a^{(i)}$ tells us how similar it is to the other samples in its own cluster, respectively.
|
|
|
|
\section{Organizing clusters as a hierarchical tree}
|
|
\subsection{Performing hierarchical clustering on a distance matrix}
|
|
\subsection{Attaching dendrograms to a heat map}
|
|
\subsection{Applying agglomerative clustering via scikit-learn}
|
|
\section{Locating regions of high density via DBSCAN}
|
|
|
|
[...] In \textit{Density-based Spatial Clustering of Applications with Noise} (DBSCAN), a special label is assigned to each sample (point) using the following criteria:
|
|
|
|
\begin{itemize}
|
|
\item A point is considered as \textit{core point} if at least a specified number (\textit{MinPts}) of neighboring points fall within the specified radius $\epsilon$.
|
|
\item A \textit{border point} is a point that has fewer neighbors than MinPts within $\epsilon$, but lies within the $\epsilon$ radius of a core point.
|
|
\item All other points that are neither core nor border points are considered as \textit{noise points}.
|
|
\end{itemize}
|
|
|
|
After labeling the points as core, border, or noise points, the DBSCAN algorithm can be summarized in two simple steps:
|
|
|
|
\begin{enumerate}
|
|
\item Form a separate cluster for each core point or a connected group of core points (core points are connected if they are no farther away than $\epsilon$).
|
|
\item Assign each border point to the cluster of its corresponding core poin.
|
|
\end{enumerate}
|
|
|
|
\section{Summary}
|
|
|
|
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 12
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Training Artificial Neural Networks for Image Recognition}
|
|
|
|
\section{Modeling complex functions with artificial neural networks}
|
|
\subsection{Single-layer neural network recap}
|
|
|
|
In \textit{Chapter 2, Training Machine Learning Algorithms for Classification}, we implemented the Adaline algorithm to perform binary classification, and we used a gradient descent optimization algorithm to learn the weight coefficients of the model. In every epoch (pass over the training set), we updated the weight vector $\mathbf{w}$ using the following update rule:
|
|
|
|
\[
|
|
\mathbf{w} := \mathbf{w} + \Delta \mathbf{w}, \quad \text{where } \Delta \mathbf{w} = - \eta \nabla J (\mathbf{w})
|
|
\]
|
|
|
|
In other words, we computed the gradient based on the whole training set and updated the weights of the model by taking a step into the opposite direction of the gradient $\nabla J(\mathbf{w})$. In order to find the optimal weights of the model, we optimized an objective function that we defined as the \textit{Sum of Squared Errors (SSE)} cost function $J(\mathbf{w})$. Furthermore, we multiplied the gradient by a factor, the learning rate $\eta$ , which we chose carefully to balance the speed of learning against the risk of overshooting the global minimum of the cost function.
|
|
|
|
In gradient descent optimization, we updated all weights simultaneously after each epoch, and we defined the partial derivative for each weight $w_j$ in the weight vector
|
|
$\mathbf{w}$ as follows:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_j} J(\mathbf{w}) = - \sum_i \big( y^{(i)} - a^{(i)} \big) x_{j}^{(i)}
|
|
\]
|
|
|
|
Here $y^{(i)}$ is the target class label of a particular sample $x^{(i)}$ , and $a^{(i)}$ is the \textit{activation} of the neuron, which is a linear function in the special case of Adaline. Furthermore, we defined the \textit{activation function} $\phi(\cdot)$ as follows:
|
|
|
|
\[
|
|
\phi(z) = z = a
|
|
\]
|
|
|
|
Here, the net input $z$ is a linear combination of the weights that are connecting the
|
|
input to the output layer:
|
|
|
|
\[
|
|
z = \sum_j w_j x_j = \mathbf{w}^T \mathbf{x}
|
|
\]
|
|
|
|
While we used the activation $\phi(z)$ to compute the gradient update, we implemented a \textit{threshold function} (Heaviside function) $g(\cdot)$ to squash the continuous-valued output into binary class labels for prediction:
|
|
|
|
\[ \phi(z) = \begin{cases}
|
|
1 & \text{ if } g(z) \ge 0 \\
|
|
-1 & \text{ otherwise }.
|
|
\end{cases}
|
|
\]
|
|
|
|
\subsection{Introducing the multi-layer neural network architecture}
|
|
|
|
[...] As shown in the preceding figure, we denote the $i$th activation unit in the $l$th layer as $a_{i}^{l}$ , and the activation units $a_{0}^{1}$ and $a_{0}^{2}$ are the \textit{bias units}, respectively, which we set equal to 1. The activation of the units in the input layer is just its input plus the bias unit:
|
|
|
|
\[
|
|
\mathbf{a}^{(i)} =
|
|
\begin{bmatrix}
|
|
a_{0}^{(1)} \\
|
|
a_{1}^{(1)} \\
|
|
\vdots \\
|
|
a_{m}^{(1)}
|
|
\end{bmatrix}
|
|
=
|
|
\begin{bmatrix}
|
|
1 \\
|
|
x_{1}^{(i)} \\
|
|
\vdots \\
|
|
x_{m}^{(i)}
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
Each unit in layer $l$ is connected to all units in layer $l +1$ via a weight coefficient. For example, the connection between the $k$th unit in layer $l$ to the $j$th unit in layer
|
|
$l+1$ would be written as $w^{(l)}_{j, k}$ . Please note that the superscript $i$ in $x^{(i)}_{m}$ stands for the $i$th sample, not the $i$th layer. In the following paragraphs, we will often omit the superscript $i$ for clarity.
|
|
|
|
[...] To better understand how this works, remember the one-hot representation of categorical variables that we introduced in \textit{Chapter 4, Building Good Training Sets -- Data Preprocessing}. For example, we would encode the three class labels in the familiar Iris dataset (\textit{0=Setosa, 1=Versicolor, 2=Virginica})
|
|
as follows:
|
|
|
|
\[
|
|
0 =
|
|
\begin{bmatrix}
|
|
1 \\
|
|
0 \\
|
|
0
|
|
\end{bmatrix},
|
|
1 =
|
|
\begin{bmatrix}
|
|
0 \\
|
|
1 \\
|
|
0
|
|
\end{bmatrix},
|
|
2 =
|
|
\begin{bmatrix}
|
|
0 \\
|
|
0 \\
|
|
1
|
|
\end{bmatrix}.
|
|
\]
|
|
|
|
This one-hot vector representation allows us to tackle classification tasks with an arbitrary number of unique class labels present in the training set.
|
|
|
|
|
|
[...] If you are new to neural network representations, the terminology around the indices (subscripts and superscripts) may look a little bit confusing at first. You may wonder
|
|
why we wrote $w^{(l)}_{j, k}$ and not $w^{(l)}_{k, j}$ to refer to the weight coefficient that connects the $k$th unit in layer $l$ to the $j$th unit in layer $l +1$. What may seem a little bit quirky at first will make much more sense in later sections when we vectorize the neural network representation. For example, we will summarize the weights that connect the input and hidden layer by a matrix $\mathbf{W}^{(1)} \in \mathbb{R}^{h \times [m+1]}$ , where $h$ is the number of hidden units and $m + 1$ is the number of input units plus bias unit.
|
|
|
|
\subsection{Activating a neural network via forward propagation}
|
|
|
|
[...] Now, let's walk through the individual steps of forward propagation to generate
|
|
an output from the patterns in the training data. Since each unit in the hidden layer
|
|
is connected to all units in the input layers, we first calculate the activation $a_{1}^{(2)}$ as follows:
|
|
|
|
\[
|
|
z_{1}^{(2)} = a_{0}^{(1)} w_{1,0}^{(1)} + a_{1}^{(1)} w_{1, 1}^{(1)} + \dots + a_{m}^{(1)} w_{l, m}^{(1)}
|
|
\]
|
|
|
|
\[
|
|
a_{1}^{(2)} = \phi \big( z_{1}^{(2)} \big)
|
|
\]
|
|
|
|
Here, $z_{1}^{(2)}$ is the net input and $\phi(\cdot)$ is the activation function, which has to be differentiable to learn the weights that connect the neurons using a gradient-based approach. To be able to solve complex problems such as image classification, we need nonlinear activation functions in our MLP model, for example, the sigmoid (logistic) function that we discussed in previous chapters:
|
|
|
|
\[
|
|
\phi(z) = \frac{1}{1 + e^{-z}}.
|
|
\]
|
|
|
|
For purposes of computational efficiency and code readability, we will now write the activation in a more compact form using the concepts of basic linear algebra, which will allow us to vectorize our code implementation:
|
|
|
|
\[
|
|
\mathbf{z}^{(2)} = \mathbf{W}^{(1)} \mathbf{a}^{(1)}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{a}^{(2)} = \phi \big( \mathbf{z}^{(2)} \big)
|
|
\]
|
|
|
|
\textit{Note: Everywhere you read $h$ in the following paragraphs of this section, you can think of $h$ as $h+1$ to include the bias unit (and in order to get the dimensions right).}
|
|
|
|
Here, $\mathbf{a}^{(1)}$ is our $[m+1] \times 1$ dimensional feature vector a sample $\mathbf{x}^{(i)}$ plus bias unit. $\mathbf{W}^{(i)}$ is an $h \times [m + 1]$-dimensional weight matrix where $h$ is the number of hidden units in our neural network. After matrix-vector multiplication, we obtain the $h \times 1$-dimensional net input vector $\mathbf{z}^{(2)}$ to calculate the activation $\mathbf{a}^{(2)}$ (where $\mathbf{a}^{(2)} \in \mathbb{R}^{h \times 1}$). Furthermore, we can generalize this computation to all $n$ samples in the training set:
|
|
|
|
\[
|
|
\mathbf{Z}^{(2)} = \mathbf{W}^{(1)} \big[ \mathbf{A}^{(1)} \big]^T
|
|
\]
|
|
|
|
Here, $\mathbf{A}^{(1)}$ is now an $n \times [m+1]$ matrix, and the matrix-matrix multiplication will result in an $h \times n$-dimensional net input matrix $\mathbf{Z}^{(2)}$. Finally, we apply the activation function $\phi(\cdot)$ to each value in the net input matrix to get the $h \times n$ activation matrix $\mathbf{A}^{(2)}$ for the next layer (here, output layer):
|
|
|
|
\[
|
|
\mathbf{A}^{(2)} = \phi \big( \mathbf{Z}^{(2)} \big)
|
|
\]
|
|
|
|
Similarly, we can rewrite the activation of the output layer in the vectorized form:
|
|
|
|
\[
|
|
\mathbf{Z}^{(3)} \mathbf{W}^{(2)} \mathbf{A}^{(2)}
|
|
\]
|
|
|
|
Here, we multiply the $t \times h$ matrix $\mathbf{W}^{(2)}$ ($t$ is the number of output units) by the $h \times n$ dimensional matrix $\mathbf{A}^{(2)}$ to obtain the $t \times n$ dimensional matrix $\mathbf{Z}^{(3)}$ (the columns in this matrix represent the outputs for each sample). Lastly, we apply the sigmoid activation function to obtain the continuous valued output of our network:
|
|
|
|
\[
|
|
\mathbf{A}^{(3)} = \phi \big( \mathbf{Z}^{(3)} \big), \; \mathbf{A}^{(3)} \in \mathbb{R}^{t \times n}.
|
|
\]
|
|
|
|
|
|
|
|
\section{Classifying handwritten digits}
|
|
\subsection{Obtaining the MNIST dataset}
|
|
\subsection{Implementing a multi-layer perceptron}
|
|
|
|
As you may have noticed, by going over our preceding MLP implementation, we also implemented some additional features, which are summarized here:
|
|
|
|
\begin{itemize}
|
|
\item \textit{l2}: the $\lambda$ parameter for L2 regularization to decrease the degree of overfitting; equivalently, \textit{l1} is the $\lambda$ parameter for L1 regularization.
|
|
\item \textit{epochs}: The number of passes over the training set.
|
|
\item \textit{eta}: The learning rate $\eta$
|
|
\item \textit{alpha}: A parameter for momentum learning to add a factor of the previous gradient to the weight update for faster learning
|
|
\[
|
|
\Delta \mathbf{w}_t = \eta \nabla J(\mathbf{w}_t) + \alpha \Delta \mathbf{w}_t-1,
|
|
\]
|
|
where $t$ is the current time step or epoch.
|
|
\item \textit{decrease\_const}: The decrease constant $d$ for an adaptive learning rate $\eta$ that decreases over time for better convergence $\eta / 1 + t \times d .$
|
|
\item \textit{shuffle}: Shuffling the training set prior to every epoch to prevent the algorithm from getting stuck in cycles.
|
|
\item \textit{Minibatches}: Splitting of the training data into k mini-batches in each epoch. The gradient is computed for each mini-batch separately instead of the entire training data for faster learning.
|
|
\end{itemize}
|
|
|
|
\section{Training an artificial neural network}
|
|
|
|
\subsection{Computing the logistic cost function}
|
|
|
|
The logistic cost function that we implemented as the \textit{\_get\_cost} method is actually pretty simple to follow since it is the same cost function that we described in the logistic regression section in \textit{Chapter 3, A Tour of Machine Learning Classifiers Using Scikit-learn.}
|
|
|
|
\[
|
|
J(\mathbf{w}) = -\sum_{i=1}^{n} y^{(i)} \log \big( a^{(i)} \big) + \big( 1 - y^{(i)} \big) \log \big( 1 - a^{(i)}\big)
|
|
\]
|
|
|
|
Here, $a^{(i)}$ is the sigmoid activation of the $i$th unit in one of the layers which we compute in the forward propagation step:
|
|
|
|
\[
|
|
a^{(i)} = \phi \big( z^{(i)} \big).
|
|
\]
|
|
|
|
Now, let's add a regularization term, which allows us to reduce the degree of over tting. As you will recall from earlier chapters, the L2 and L1 regularization terms are defined as follows (remember that we don't regularize the bias units):
|
|
|
|
\[
|
|
L2 = \lambda \lVert \mathbf{w} \rVert^{2}_{2} = \lambda \sum_{j=1}^{m} w_{j}^{2} \text{ and } L1 = \lambda \lVert \mathbf{w} \rVert_{1} = \lambda \sum_{j=1}^{m} | w_j |.
|
|
\]
|
|
|
|
[...] By adding the L2 regularization term to our logistic cost function, we obtain the following equation:
|
|
|
|
\[
|
|
J(\mathbf{w}) = - \Bigg[ \sum_{i=1}^{n} y^{(i)} \log \big( a^{(i)} \big) + \big(1 - y^{(i)} \big) \log \big(1- a^{(i)} \big) \Bigg] + \frac{\lambda}{2} \lVert \mathbf{w} \rVert^{2}_{2}
|
|
\]
|
|
|
|
Since we implemented an MLP for multi-class classification, this returns an output vector of $t$ elements, which we need to compare with the $t \times 1$ dimensional target vector in the one-hot encoding representation. For example, the activation of the third layer and the target class (here: class 2) for a particular sample may look like this:
|
|
|
|
\[
|
|
a^{(3)} =
|
|
\begin{bmatrix}
|
|
0.1 \\
|
|
0.9 \\
|
|
\vdots \\
|
|
0.3
|
|
\end{bmatrix}
|
|
,\; \mathbf{y} =
|
|
\begin{bmatrix}
|
|
0 \\
|
|
1 \\
|
|
\vdots \\
|
|
0
|
|
\end{bmatrix}
|
|
\]
|
|
|
|
Thus, we need to generalize the logistic cost function to all activation units $j$ in our network. So our cost function (without the regularization term) becomes:
|
|
|
|
\[
|
|
J(\mathbf{w}) = - \sum_{i=1}^{n} \sum_{j=1}^{t} = y_{j}^{(i)} \log \big( 1 - a^{(1)}_{j} \big)
|
|
\]
|
|
|
|
Here, the superscript $i$ is the index of a particular sample in our training set.
|
|
The following generalized regularization term may look a little bit complicated at first, but here we are just calculating the sum of all weights of a layer $l$ (without the bias term) that we added to the first column:
|
|
|
|
\[
|
|
J(\mathbf{w}) = - \Bigg[ \sum_{i=1}^{n} \sum_{j=1}^{m} y_{j}^{(i)} \log \bigg( \phi \Big( z_{j}^{(i)} \Big) \bigg) + \Big(1 - y_{j}^{(i)} \Big) \log \bigg(1 - \phi \Big( z_{j}^{(i)} \Big) \bigg) \Bigg] + \frac{\lambda}{2} \sum_{l=1}^{L-1} \sum_{i=1}^{u_l} \sum_{j=1}^{u_{l+1}} \Big(w_{j, i}^{(l)}\Big)^2
|
|
\]
|
|
|
|
The following expression represents the L2-penalty term:
|
|
|
|
\[
|
|
\frac{\lambda}{2} \sum_{l=1}^{L-1} \sum_{i=1}^{u_l} \sum_{j=1}^{u_{l+1}} \Big(w_{j, i}^{(l)}\Big)^2
|
|
\]
|
|
|
|
Remember that our goal is to minimize the cost function $J(\mathbf{w})$. Thus, we need to calculate the partial derivative of matrix $\mathbf{W}$ with respect to each weight for every layer in the network:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_{j, i}^{l}} J(\mathbf{W}).
|
|
\]
|
|
|
|
|
|
\subsection{Training neural networks via backpropagation}
|
|
|
|
[...] As we recall from the beginning of this chapter, we first need to apply forward propagation in order to obtain the activation of the output layer, which we formulated as follows:
|
|
|
|
\[
|
|
\mathbf{Z}^{(2)} = \mathbf{W}^{(1)} \Big[ \mathbf{A}^{(1)} \Big]^T \quad \text{(net input of the hidden layer)}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{A}^{(2)} = \phi \big( \mathbf{Z}^{(2)} = \big) \quad \text{(activation of the hidden layer)}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{Z}^{(3)} = \mathbf{W}^{(2)} \mathbf{A}^{(2)} \quad \text{(net input of the output layer)}
|
|
\]
|
|
|
|
\[
|
|
\mathbf{A}^{(3)} = \phi \big( \mathbf{Z}^{(3)} \big) \quad \text{(activation of the output layer)}
|
|
\]
|
|
|
|
[...] In backpropagation, we propagate the error from right to left. We start by calculating the error vector of the output layer:
|
|
|
|
\[
|
|
\delta^{(3)} = \mathbf{a}^{(3)} - \mathbf{y}
|
|
\]
|
|
|
|
Here, $\mathbf{y}$ is the vector of the true class labels. Next, we calculate the error term of the hidden layer:
|
|
|
|
\[
|
|
\delta^{(2)} = \big( \mathbf{W}^{(2)} \big)^T \delta^{(3)} \cdot \frac{\partial \phi \big( z^{(2)} \big) }{\partial z^{(2)}}
|
|
.\]
|
|
|
|
Here, $\frac{\partial \phi \big( z^{(2)} \big)}{\partial z^{(2)}}$ is simply the derivative of the sigmoid activation function, which we implemented as \textit{\_sigmoid\_gradient}:
|
|
|
|
\[
|
|
\frac{\partial \phi \big( z^{(2)} \big)}{\partial z^{(2)}} = \Big( a^{(2)} \cdot \big( 1 - a^{(2)} \big) \Big).
|
|
\]
|
|
|
|
Note that the asterisk symbol ($\cdot$) means element-wise multiplication in this context.
|
|
|
|
Although, it is not important to follow the next equations, you may be curious as to how I obtained the derivative of the activation function. I summarized the derivation step by step here:
|
|
|
|
\begin{equation*}
|
|
\begin{split}
|
|
& \phi' (z) = \frac{\partial}{\partial z} \Big( \frac{1}{1 + e^{-z}} \Big) \\
|
|
& = \frac{e^{-z}}{(1 + e^{-z})^2} \\
|
|
& = \frac{1 + e^{-z}}{\big( 1 + e^{-z} \big)^2} - \Big( \frac{1}{1 + e^{-z}} \Big)^2 \\
|
|
& = \frac{1}{\big( 1 + e^{-z} \big)^2} - \Big( \frac{1}{1 + e^{-z}} \Big)^2 \\
|
|
& = \phi(z) - \big(\phi(z)\big)^2 \\
|
|
& = \phi(z) - \big( 1 - \phi(z) \big) \\
|
|
& = a(1 -a)
|
|
\end{split}
|
|
\end{equation*}
|
|
|
|
To better understand how we compute the $\delta^P{(3)}$ term, let's walk through it in more detail. In the preceding equation, we multiplied the transpose $(\mathbf{W}^{(2)})^T$ of the $t \times h$ dimensional matrix $\mathbf{W}^{(2)}$; $t$ is the number of output class labels and $h$ is the number of hidden units. Now, $(\mathbf{W}^{(2)})^T$ becomes an $h \times t$ dimensional matrix with $\delta^{(3)}$, which is a $t \times 1$ dimensional vector. We then performed a pair-wise multiplication between $(\mathbf{W}^{(2)})^T \delta^{(3)}$ and $\Big( a^{(2)} \cdot \big( 1 - a^{(2)} \big) \Big)$, which is also a $t \times 1$ dimensional vector. Eventually, after obtaining the ? terms, we can now write the derivation of the cost function as follows:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_{i, j}^{l}} J(\mathbf{W}) = a_{j}^{l} \delta_{i}^{(l+1)}
|
|
\]
|
|
|
|
Next, we need to accumulate the partial derivative of every $j$th node in layer $l$ and the $i$th error of the node in layer $l +1$:
|
|
|
|
\[
|
|
\Delta^{(l)}_{i, j} := \Delta_{i, j}^{(l)} + a_{j}^{(l)} \delta_{i}^{(l+1)}
|
|
\]
|
|
|
|
Remember that we need to compute $\Delta_{i, j}^{(l)}$ for every sample in the training set. Thus, it is easier to implement it as a vectorized version like in our preceding MLP code implementation:
|
|
|
|
\[
|
|
\Delta^{(l)} := \Delta^{(l)} \delta^{(l + 1)} \big( \mathbf{A}^{(l)} \big)^T
|
|
\]
|
|
|
|
After we have accumulated the partial derivatives, we can add the regularization term as follows:
|
|
|
|
\[
|
|
\Delta^{(l)} := \Delta^{(l)} + \lambda^{(l)} \quad \text{(except for the bias term)}
|
|
\]
|
|
|
|
Lastly, after we have computed the gradients, we can now update the weights by
|
|
taking an opposite step towards the gradient:
|
|
|
|
\[
|
|
\mathbf{W}^{(l)} := \mathbf{W}^{(l)} - \eta\Delta^{(l)}
|
|
\]
|
|
|
|
|
|
\section{Developing your intuition for backpropagation}
|
|
\section{Debugging neural networks with gradient checking}
|
|
|
|
In the previous sections, we defined a cost function $J(\mathbf{W})$ where $\mathbf{W}$ is the matrix
|
|
of the weight coefficients of an artificial network. Note that $J(\mathbf{W})$ is -- roughly speaking -- a "stacked" matrix consisting of the matrices $\mathbf{W}^{(1)} $ and $W^{(2)}$ in a multi-layer perceptron with one hidden unit. We defined $\mathbf{W}^{(1)}$ as the $h \times [m+1]$-dimensional matrix that connects the input layer to the hidden layer, where $h$ is the number of hidden units and $m$ is the number of features (input units). The matrix $\mathbf{W}^{(2)}$ that connects the hidden layer to the output layer has the dimensions $t \times h$, where $t$ is the number of output units. We then calculated the derivative of the cost function for a weight $w_{i, j}^{l}$ as follows:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_{i, j}^{(i)}}
|
|
\]
|
|
|
|
Remember that we are updating the weights by taking an opposite step towards the direction of the gradient. In gradient checking, we compare this analytical solution to a numerically approximated gradient:
|
|
|
|
\[
|
|
\frac{\partial}{\partial w_{i, j}^{(l)}} J(\mathbf{W}) \approx \frac{J\big( w_{i, j}^{(l)} + \epsilon \big) - J \big( w_{i, j}^{(l)}\big)}{\epsilon}
|
|
\]
|
|
|
|
Here, $\epsilon$ is typically a very small number, for example 1e-5 (note that 1e-5 is just
|
|
a more convenient notation for 0.00001). Intuitively, we can think of this finite difference approximation as the slope of the secant line connecting the points of the cost function for the two weights w and $w + \epsilon$ (both are scalar values), as shown in the following figure. We are omitting the superscripts and subscripts for simplicity.
|
|
|
|
[...] An even better approach that yields a more accurate approximation of the gradient is to compute the symmetric (or centered) difference quotient given by the two-point formula:
|
|
|
|
\[
|
|
\frac{ J\big( w_{i, j}^{(l)} + \epsilon \big) - J\big( w_{i, j}^{(l)} - \epsilon \big) }{2 \epsilon}
|
|
\]
|
|
|
|
Typically, the approximated difference between the numerical gradient $J'_{n}$ and analytical gradient $J'_{a}$ is then calculated as the L2 vector norm. For practical a reasons, we unroll the computed gradient matrices into at vectors so that we can calculate the error (the difference between the gradient vectors) more conveniently:
|
|
|
|
\[
|
|
\text{error} = \lVert J'_n - J'_a \rVert_2
|
|
\]
|
|
|
|
One problem is that the error is not scale invariant (small errors are more significant if the weight vector norms are small, too). Thus, it is recommended to calculate a normalized difference:
|
|
|
|
\[
|
|
\text{relative error} = \frac{\lVert J'_n - J'_a \rVert_2}{\lVert J'_n \rVert_2 + \lVert J'_a \rVert_2 }
|
|
\]
|
|
|
|
|
|
\section{Convergence in neural networks}
|
|
\section{Other neural network architectures}
|
|
\subsection{Convolutional Neural Networks}
|
|
\subsection{Recurrent Neural Networks}
|
|
\section{A few last words about neural network implementation}
|
|
\section{Summary}
|
|
|
|
|
|
|
|
%%%%%%%%%%%%%%%
|
|
% CHAPTER 13
|
|
%%%%%%%%%%%%%%%
|
|
|
|
\chapter{Parallelizing Neural Network Training with Theano}
|
|
|
|
\section{Building, compiling, and running expressions with Theano}
|
|
\subsection{What is Theano?}
|
|
\subsection{First steps with Theano}
|
|
\subsection{Configuring Theano}
|
|
\subsection{Working with array structures}
|
|
\subsection{Wrapping things up -- a linear regression example}
|
|
\section{Choosing activation functions for feedforward neural networks}
|
|
\subsection{Logistic function recap}
|
|
|
|
We recall from the section on logistic regression in \textit{Chapter 3, A Tour of Machine Learning Classifiers Using Scikit-learn} that we can use the logistic function to model the probability that sample $x$ belongs to the positive class (class 1) in a binary classification task:
|
|
|
|
\[
|
|
\phi_{logistic} (z) = \frac{1}{1 + e^{-z}}
|
|
\]
|
|
|
|
Here, the scalar variable $z$ is defined as the net input:
|
|
|
|
\[
|
|
z = w_0 x_0 + \dots + w_m x_m = \sum_{j=0}^{m} x_j w_j = \mathbf{w}^T \mathbf{x}
|
|
\]
|
|
|
|
Note that $w_0$ is the bias unit (y-axis intercept, $x_0 =1$).
|
|
|
|
\subsection{Estimating probabilities in multi-class classification via the softmax function}
|
|
|
|
The softmax function is a generalization of the logistic function that allows us
|
|
to compute meaningful class-probabilities in multi-class settings (multinomial logistic regression). In softmax, the probability of a particular sample with net input z belongs to the i th class can be computed with a normalization term in the denominator that is the sum of all M linear functions:
|
|
|
|
$P(y=i | z) = \phi_{softmax}(z) = \frac{e_{i}^{z}}{\sum_{m=1}^{M} e_{m}^{z}}$.
|
|
|
|
\subsection{Broadening the output spectrum by using a hyperbolic tangent}
|
|
|
|
Another sigmoid function that is often used in the hidden layers of artificial neural networks is the \textit{hyperbolic tangent (tanh)}, which can be interpreted as a rescaled version of the logistic function.
|
|
|
|
\[
|
|
\phi_{tanh} (z) = 2 \times \phi_{logistic} (2 \times z) - 1 = \frac{e^{z} - e^{-z} }{e^{z} + e^{-z}}
|
|
\]
|
|
|
|
\[
|
|
\phi_{logistic}(z) = \frac{1}{1 + e^{-z}}
|
|
\]
|
|
|
|
\section{Training neural networks efficiently using Keras}
|
|
\section{Summary}
|
|
|
|
\end{document} % end main document |