{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "# Data Analysis and Machine Learning: Neural networks, from the simple perceptron to deep learning\n", "\n", " \n", "**Morten Hjorth-Jensen**, Department of Physics, University of Oslo and Department of Physics and Astronomy and National Superconducting Cyclotron Laboratory, Michigan State University\n", "\n", "Date: **Oct 4, 2019**\n", "\n", "Copyright 1999-2019, Morten Hjorth-Jensen. Released under CC Attribution-NonCommercial 4.0 license\n", "\n", "\n", "\n", "\n", "## Neural networks\n", "\n", "Artificial neural networks are computational systems that can learn to\n", "perform tasks by considering examples, generally without being\n", "programmed with any task-specific rules. It is supposed to mimic a\n", "biological system, wherein neurons interact by sending signals in the\n", "form of mathematical functions between layers. All layers can contain\n", "an arbitrary number of neurons, and each connection is represented by\n", "a weight variable.\n", "\n", "\n", "## Artificial neurons\n", "\n", "The field of artificial neural networks has a long history of\n", "development, and is closely connected with the advancement of computer\n", "science and computers in general. A model of artificial neurons was\n", "first developed by McCulloch and Pitts in 1943 to study signal\n", "processing in the brain and has later been refined by others. The\n", "general idea is to mimic neural networks in the human brain, which is\n", "composed of billions of neurons that communicate with each other by\n", "sending electrical signals. Each neuron accumulates its incoming\n", "signals, which must exceed an activation threshold to yield an\n", "output. If the threshold is not overcome, the neuron remains inactive,\n", "i.e. has zero output.\n", "\n", "This behaviour has inspired a simple mathematical model for an artificial neuron." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", "\n", "$$\n", "\\begin{equation}\n", " y = f\\left(\\sum_{i=1}^n w_ix_i\\right) = f(u)\n", "\\label{artificialNeuron} \\tag{1}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here, the output $y$ of the neuron is the value of its activation function, which have as input\n", "a weighted sum of signals $x_i, \\dots ,x_n$ received by $n$ other neurons.\n", "\n", "Conceptually, it is helpful to divide neural networks into four\n", "categories:\n", "1. general purpose neural networks for supervised learning,\n", "\n", "2. neural networks designed specifically for image processing, the most prominent example of this class being Convolutional Neural Networks (CNNs),\n", "\n", "3. neural networks for sequential data such as Recurrent Neural Networks (RNNs), and\n", "\n", "4. neural networks for unsupervised learning such as Deep Boltzmann Machines.\n", "\n", "In natural science, DNNs and CNNs have already found numerous\n", "applications. In statistical physics, they have been applied to detect\n", "phase transitions in 2D Ising and Potts models, lattice gauge\n", "theories, and different phases of polymers, or solving the\n", "Navier-Stokes equation in weather forecasting. Deep learning has also\n", "found interesting applications in quantum physics. Various quantum\n", "phase transitions can be detected and studied using DNNs and CNNs,\n", "topological phases, and even non-equilibrium many-body\n", "localization. Representing quantum states as DNNs quantum state\n", "tomography are among some of the impressive achievements to reveal the\n", "potential of DNNs to facilitate the study of quantum systems.\n", "\n", "In quantum information theory, it has been shown that one can perform\n", "gate decompositions with the help of neural. \n", "\n", "The applications are not limited to the natural sciences. There is a\n", "plethora of applications in essentially all disciplines, from the\n", "humanities to life science and medicine.\n", "\n", "## Neural network types\n", "\n", "An artificial neural network (ANN), is a computational model that\n", "consists of layers of connected neurons, or nodes or units. We will\n", "refer to these interchangeably as units or nodes, and sometimes as\n", "neurons.\n", "\n", "It is supposed to mimic a biological nervous system by letting each\n", "neuron interact with other neurons by sending signals in the form of\n", "mathematical functions between layers. A wide variety of different\n", "ANNs have been developed, but most of them consist of an input layer,\n", "an output layer and eventual layers in-between, called *hidden\n", "layers*. All layers can contain an arbitrary number of nodes, and each\n", "connection between two nodes is associated with a weight variable.\n", "\n", "Neural networks (also called neural nets) are neural-inspired\n", "nonlinear models for supervised learning. As we will see, neural nets\n", "can be viewed as natural, more powerful extensions of supervised\n", "learning methods such as linear and logistic regression and soft-max\n", "methods we discussed earlier.\n", "\n", "\n", "## Feed-forward neural networks\n", "\n", "The feed-forward neural network (FFNN) was the first and simplest type\n", "of ANNs that were devised. In this network, the information moves in\n", "only one direction: forward through the layers.\n", "\n", "Nodes are represented by circles, while the arrows display the\n", "connections between the nodes, including the direction of information\n", "flow. Additionally, each arrow corresponds to a weight variable\n", "(figure to come). We observe that each node in a layer is connected\n", "to *all* nodes in the subsequent layer, making this a so-called\n", "*fully-connected* FFNN.\n", "\n", "\n", "\n", "## Convolutional Neural Network\n", "\n", "A different variant of FFNNs are *convolutional neural networks*\n", "(CNNs), which have a connectivity pattern inspired by the animal\n", "visual cortex. Individual neurons in the visual cortex only respond to\n", "stimuli from small sub-regions of the visual field, called a receptive\n", "field. This makes the neurons well-suited to exploit the strong\n", "spatially local correlation present in natural images. The response of\n", "each neuron can be approximated mathematically as a convolution\n", "operation. (figure to come)\n", "\n", "Convolutional neural networks emulate the behaviour of neurons in the\n", "visual cortex by enforcing a *local* connectivity pattern between\n", "nodes of adjacent layers: Each node in a convolutional layer is\n", "connected only to a subset of the nodes in the previous layer, in\n", "contrast to the fully-connected FFNN. Often, CNNs consist of several\n", "convolutional layers that learn local features of the input, with a\n", "fully-connected layer at the end, which gathers all the local data and\n", "produces the outputs. They have wide applications in image and video\n", "recognition.\n", "\n", "## Recurrent neural networks\n", "\n", "So far we have only mentioned ANNs where information flows in one\n", "direction: forward. *Recurrent neural networks* on the other hand,\n", "have connections between nodes that form directed *cycles*. This\n", "creates a form of internal memory which are able to capture\n", "information on what has been calculated before; the output is\n", "dependent on the previous computations. Recurrent NNs make use of\n", "sequential information by performing the same task for every element\n", "in a sequence, where each element depends on previous elements. An\n", "example of such information is sentences, making recurrent NNs\n", "especially well-suited for handwriting and speech recognition.\n", "\n", "## Other types of networks\n", "\n", "There are many other kinds of ANNs that have been developed. One type\n", "that is specifically designed for interpolation in multidimensional\n", "space is the radial basis function (RBF) network. RBFs are typically\n", "made up of three layers: an input layer, a hidden layer with\n", "non-linear radial symmetric activation functions and a linear output\n", "layer (''linear'' here means that each node in the output layer has a\n", "linear activation function). The layers are normally fully-connected\n", "and there are no cycles, thus RBFs can be viewed as a type of\n", "fully-connected FFNN. They are however usually treated as a separate\n", "type of NN due the unusual activation functions.\n", "\n", "## Multilayer perceptrons\n", "\n", "One uses often so-called fully-connected feed-forward neural networks\n", "with three or more layers (an input layer, one or more hidden layers\n", "and an output layer) consisting of neurons that have non-linear\n", "activation functions.\n", "\n", "Such networks are often called *multilayer perceptrons* (MLPs).\n", "\n", "## Why multilayer perceptrons?\n", "\n", "According to the *Universal approximation theorem*, a feed-forward\n", "neural network with just a single hidden layer containing a finite\n", "number of neurons can approximate a continuous multidimensional\n", "function to arbitrary accuracy, assuming the activation function for\n", "the hidden layer is a **non-constant, bounded and\n", "monotonically-increasing continuous function**.\n", "\n", "Note that the requirements on the activation function only applies to\n", "the hidden layer, the output nodes are always assumed to be linear, so\n", "as to not restrict the range of output values.\n", "\n", "\n", "## Mathematical model\n", "\n", "The output $y$ is produced via the activation function $f$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "y = f\\left(\\sum_{i=1}^n w_ix_i + b_i\\right) = f(z),\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This function receives $x_i$ as inputs.\n", "Here the activation $z=(\\sum_{i=1}^n w_ix_i+b_i)$. \n", "In an FFNN of such neurons, the *inputs* $x_i$ are the *outputs* of\n", "the neurons in the preceding layer. Furthermore, an MLP is\n", "fully-connected, which means that each neuron receives a weighted sum\n", "of the outputs of *all* neurons in the previous layer.\n", "\n", "## Mathematical model\n", "\n", "First, for each node $i$ in the first hidden layer, we calculate a weighted sum $z_i^1$ of the input coordinates $x_j$," ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation} z_i^1 = \\sum_{j=1}^{M} w_{ij}^1 x_j + b_i^1\n", "\\label{_auto1} \\tag{2}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Here $b_i$ is the so-called bias which is normally needed in\n", "case of zero activation weights or inputs. How to fix the biases and\n", "the weights will be discussed below. The value of $z_i^1$ is the\n", "argument to the activation function $f_i$ of each node $i$, The\n", "variable $M$ stands for all possible inputs to a given node $i$ in the\n", "first layer. We define the output $y_i^1$ of all neurons in layer 1 as" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " y_i^1 = f(z_i^1) = f\\left(\\sum_{j=1}^M w_{ij}^1 x_j + b_i^1\\right)\n", "\\label{outputLayer1} \\tag{3}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where we assume that all nodes in the same layer have identical\n", "activation functions, hence the notation $f$. In general, we could assume in the more general case that different layers have different activation functions.\n", "In this case we would identify these functions with a superscript $l$ for the $l$-th layer," ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " y_i^l = f^l(u_i^l) = f^l\\left(\\sum_{j=1}^{N_{l-1}} w_{ij}^l y_j^{l-1} + b_i^l\\right)\n", "\\label{generalLayer} \\tag{4}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where $N_l$ is the number of nodes in layer $l$. When the output of\n", "all the nodes in the first hidden layer are computed, the values of\n", "the subsequent layer can be calculated and so forth until the output\n", "is obtained.\n", "\n", "\n", "\n", "## Mathematical model\n", "\n", "The output of neuron $i$ in layer 2 is thus," ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " y_i^2 = f^2\\left(\\sum_{j=1}^N w_{ij}^2 y_j^1 + b_i^2\\right) \n", "\\label{_auto2} \\tag{5}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation} \n", " = f^2\\left[\\sum_{j=1}^N w_{ij}^2f^1\\left(\\sum_{k=1}^M w_{jk}^1 x_k + b_j^1\\right) + b_i^2\\right]\n", "\\label{outputLayer2} \\tag{6}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where we have substituted $y_k^1$ with the inputs $x_k$. Finally, the ANN output reads" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " y_i^3 = f^3\\left(\\sum_{j=1}^N w_{ij}^3 y_j^2 + b_i^3\\right) \n", "\\label{_auto3} \\tag{7}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation} \n", " = f_3\\left[\\sum_{j} w_{ij}^3 f^2\\left(\\sum_{k} w_{jk}^2 f^1\\left(\\sum_{m} w_{km}^1 x_m + b_k^1\\right) + b_j^2\\right)\n", " + b_1^3\\right]\n", "\\label{_auto4} \\tag{8}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Mathematical model\n", "\n", "We can generalize this expression to an MLP with $l$ hidden\n", "layers. The complete functional form is," ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", "y^{l+1}_i = f^{l+1}\\left[\\!\\sum_{j=1}^{N_l} w_{ij}^3 f^l\\left(\\sum_{k=1}^{N_{l-1}}w_{jk}^{l-1}\\left(\\dots f^1\\left(\\sum_{n=1}^{N_0} w_{mn}^1 x_n+ b_m^1\\right)\\dots\\right)+b_k^2\\right)+b_1^3\\right] \n", "\\label{completeNN} \\tag{9}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "which illustrates a basic property of MLPs: The only independent\n", "variables are the input values $x_n$.\n", "\n", "## Mathematical model\n", "\n", "This confirms that an MLP, despite its quite convoluted mathematical\n", "form, is nothing more than an analytic function, specifically a\n", "mapping of real-valued vectors $\\hat{x} \\in \\mathbb{R}^n \\rightarrow\n", "\\hat{y} \\in \\mathbb{R}^m$.\n", "\n", "Furthermore, the flexibility and universality of an MLP can be\n", "illustrated by realizing that the expression is essentially a nested\n", "sum of scaled activation functions of the form" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " f(x) = c_1 f(c_2 x + c_3) + c_4\n", "\\label{_auto5} \\tag{10}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where the parameters $c_i$ are weights and biases. By adjusting these\n", "parameters, the activation functions can be shifted up and down or\n", "left and right, change slope or be rescaled which is the key to the\n", "flexibility of a neural network.\n", "\n", "### Matrix-vector notation\n", "\n", "We can introduce a more convenient notation for the activations in an A NN. \n", "\n", "Additionally, we can represent the biases and activations\n", "as layer-wise column vectors $\\hat{b}_l$ and $\\hat{y}_l$, so that the $i$-th element of each vector \n", "is the bias $b_i^l$ and activation $y_i^l$ of node $i$ in layer $l$ respectively. \n", "\n", "We have that $\\mathrm{W}_l$ is an $N_{l-1} \\times N_l$ matrix, while $\\hat{b}_l$ and $\\hat{y}_l$ are $N_l \\times 1$ column vectors. \n", "With this notation, the sum becomes a matrix-vector multiplication, and we can write\n", "the equation for the activations of hidden layer 2 (assuming three nodes for simplicity) as" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " \\hat{y}_2 = f_2(\\mathrm{W}_2 \\hat{y}_{1} + \\hat{b}_{2}) = \n", " f_2\\left(\\left[\\begin{array}{ccc}\n", " w^2_{11} &w^2_{12} &w^2_{13} \\\\\n", " w^2_{21} &w^2_{22} &w^2_{23} \\\\\n", " w^2_{31} &w^2_{32} &w^2_{33} \\\\\n", " \\end{array} \\right] \\cdot\n", " \\left[\\begin{array}{c}\n", " y^1_1 \\\\\n", " y^1_2 \\\\\n", " y^1_3 \\\\\n", " \\end{array}\\right] + \n", " \\left[\\begin{array}{c}\n", " b^2_1 \\\\\n", " b^2_2 \\\\\n", " b^2_3 \\\\\n", " \\end{array}\\right]\\right).\n", "\\label{_auto6} \\tag{11}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Matrix-vector notation and activation\n", "\n", "The activation of node $i$ in layer 2 is" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", " y^2_i = f_2\\Bigr(w^2_{i1}y^1_1 + w^2_{i2}y^1_2 + w^2_{i3}y^1_3 + b^2_i\\Bigr) = \n", " f_2\\left(\\sum_{j=1}^3 w^2_{ij} y_j^1 + b^2_i\\right).\n", "\\label{_auto7} \\tag{12}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This is not just a convenient and compact notation, but also a useful\n", "and intuitive way to think about MLPs: The output is calculated by a\n", "series of matrix-vector multiplications and vector additions that are\n", "used as input to the activation functions. For each operation\n", "$\\mathrm{W}_l \\hat{y}_{l-1}$ we move forward one layer.\n", "\n", "\n", "### Activation functions\n", "\n", "A property that characterizes a neural network, other than its\n", "connectivity, is the choice of activation function(s). As described\n", "in, the following restrictions are imposed on an activation function\n", "for a FFNN to fulfill the universal approximation theorem\n", "\n", " * Non-constant\n", "\n", " * Bounded\n", "\n", " * Monotonically-increasing\n", "\n", " * Continuous\n", "\n", "### Activation functions, Logistic and Hyperbolic ones\n", "\n", "The second requirement excludes all linear functions. Furthermore, in\n", "a MLP with only linear activation functions, each layer simply\n", "performs a linear transformation of its inputs.\n", "\n", "Regardless of the number of layers, the output of the NN will be\n", "nothing but a linear function of the inputs. Thus we need to introduce\n", "some kind of non-linearity to the NN to be able to fit non-linear\n", "functions Typical examples are the logistic *Sigmoid*" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "f(x) = \\frac{1}{1 + e^{-x}},\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "and the *hyperbolic tangent* function" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "f(x) = \\tanh(x)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Relevance\n", "\n", "The *sigmoid* function are more biologically plausible because the\n", "output of inactive neurons are zero. Such activation function are\n", "called *one-sided*. However, it has been shown that the hyperbolic\n", "tangent performs better than the sigmoid for training MLPs. has\n", "become the most popular for *deep neural networks*" ] }, { "cell_type": "code", "execution_count": 15, "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "