{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "# Week 40: From Stochastic Gradient Descent to Neural networks\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 6, 2020**\n", "\n", "Copyright 1999-2020, Morten Hjorth-Jensen. Released under CC Attribution-NonCommercial 4.0 license\n", "\n", "\n", "\n", "\n", "## Plan for week 40\n", "\n", "* Thursday: Stochastic Gradient descent with examples and automatic differentiation and begin Neural Networks. [Video of Lecture](https://www.uio.no/studier/emner/matnat/fys/FYS-STK4155/h20/forelesningsvideoer/LectureOctober1.mp4?vrtx=view-as-webpage) \n", "\n", "* Friday: Neural Networks, setting up the basic steps, from the simple perceptron model to the multi-layer perceptron model. [Video of Lecture](https://www.uio.no/studier/emner/matnat/fys/FYS-STK4155/h20/forelesningsvideoer/LectureOctober2.mp4?vrtx=view-as-webpage) \n", "\n", "Reading suggestions for both days: [Aurelien Geron's chapter 10](https://github.com/CompPhysics/MachineLearning/blob/master/doc/Textbooks/TensorflowML.pdf) and Hastie et al chapter 11.\n", "For Stochastic Gradient Descent, we recommend chapter 4 of Geron's text. \n", "\n", "## Overview video for week 40\n", "\n", "[Overview Video, from Stochastic Gradient methods to Neural Networks](https://www.uio.no/studier/emner/matnat/fys/FYS-STK3155/h20/forelesningsvideoer/OverviewWeek40.mp4?vrtx=view-as-webpage)\n", "\n", "## Stochastic Gradient Descent\n", "\n", "Stochastic gradient descent (SGD) and variants thereof address some of\n", "the shortcomings of the Gradient descent method discussed above.\n", "\n", "The underlying idea of SGD comes from the observation that the cost\n", "function, which we want to minimize, can almost always be written as a\n", "sum over $n$ data points $\\{\\mathbf{x}_i\\}_{i=1}^n$," ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "C(\\mathbf{\\beta}) = \\sum_{i=1}^n c_i(\\mathbf{x}_i,\n", "\\mathbf{\\beta}).\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Computation of gradients\n", "\n", "This in turn means that the gradient can be\n", "computed as a sum over $i$-gradients" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\nabla_\\beta C(\\mathbf{\\beta}) = \\sum_i^n \\nabla_\\beta c_i(\\mathbf{x}_i,\n", "\\mathbf{\\beta}).\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Stochasticity/randomness is introduced by only taking the\n", "gradient on a subset of the data called minibatches. If there are $n$\n", "data points and the size of each minibatch is $M$, there will be $n/M$\n", "minibatches. We denote these minibatches by $B_k$ where\n", "$k=1,\\cdots,n/M$.\n", "\n", "## SGD example\n", "As an example, suppose we have $10$ data points $(\\mathbf{x}_1,\\cdots, \\mathbf{x}_{10})$ \n", "and we choose to have $M=5$ minibathces,\n", "then each minibatch contains two data points. In particular we have\n", "$B_1 = (\\mathbf{x}_1,\\mathbf{x}_2), \\cdots, B_5 =\n", "(\\mathbf{x}_9,\\mathbf{x}_{10})$. Note that if you choose $M=1$ you\n", "have only a single batch with all data points and on the other extreme,\n", "you may choose $M=n$ resulting in a minibatch for each datapoint, i.e\n", "$B_k = \\mathbf{x}_k$.\n", "\n", "The idea is now to approximate the gradient by replacing the sum over\n", "all data points with a sum over the data points in one the minibatches\n", "picked at random in each gradient descent step" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\nabla_{\\beta}\n", "C(\\mathbf{\\beta}) = \\sum_{i=1}^n \\nabla_\\beta c_i(\\mathbf{x}_i,\n", "\\mathbf{\\beta}) \\rightarrow \\sum_{i \\in B_k}^n \\nabla_\\beta\n", "c_i(\\mathbf{x}_i, \\mathbf{\\beta}).\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## The gradient step\n", "\n", "Thus a gradient descent step now looks like" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\beta_{j+1} = \\beta_j - \\gamma_j \\sum_{i \\in B_k}^n \\nabla_\\beta c_i(\\mathbf{x}_i,\n", "\\mathbf{\\beta})\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where $k$ is picked at random with equal\n", "probability from $[1,n/M]$. An iteration over the number of\n", "minibathces (n/M) is commonly referred to as an epoch. Thus it is\n", "typical to choose a number of epochs and for each epoch iterate over\n", "the number of minibatches, as exemplified in the code below.\n", "\n", "## Simple example code" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "import numpy as np \n", "\n", "n = 100 #100 datapoints \n", "M = 5 #size of each minibatch\n", "m = int(n/M) #number of minibatches\n", "n_epochs = 10 #number of epochs\n", "\n", "j = 0\n", "for epoch in range(1,n_epochs+1):\n", " for i in range(m):\n", " k = np.random.randint(m) #Pick the k-th minibatch at random\n", " #Compute the gradient using the data in minibatch Bk\n", " #Compute new suggestion for \n", " j += 1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Taking the gradient only on a subset of the data has two important\n", "benefits. First, it introduces randomness which decreases the chance\n", "that our opmization scheme gets stuck in a local minima. Second, if\n", "the size of the minibatches are small relative to the number of\n", "datapoints ($M < n$), the computation of the gradient is much\n", "cheaper since we sum over the datapoints in the $k-th$ minibatch and not\n", "all $n$ datapoints.\n", "\n", "## When do we stop?\n", "\n", "A natural question is when do we stop the search for a new minimum?\n", "One possibility is to compute the full gradient after a given number\n", "of epochs and check if the norm of the gradient is smaller than some\n", "threshold and stop if true. However, the condition that the gradient\n", "is zero is valid also for local minima, so this would only tell us\n", "that we are close to a local/global minimum. However, we could also\n", "evaluate the cost function at this point, store the result and\n", "continue the search. If the test kicks in at a later stage we can\n", "compare the values of the cost function and keep the $\\beta$ that\n", "gave the lowest value.\n", "\n", "## Slightly different approach\n", "\n", "Another approach is to let the step length $\\gamma_j$ depend on the\n", "number of epochs in such a way that it becomes very small after a\n", "reasonable time such that we do not move at all.\n", "\n", "As an example, let $e = 0,1,2,3,\\cdots$ denote the current epoch and let $t_0, t_1 > 0$ be two fixed numbers. Furthermore, let $t = e \\cdot m + i$ where $m$ is the number of minibatches and $i=0,\\cdots,m-1$. Then the function $$\\gamma_j(t; t_0, t_1) = \\frac{t_0}{t+t_1} $$ goes to zero as the number of epochs gets large. I.e. we start with a step length $\\gamma_j (0; t_0, t_1) = t_0/t_1$ which decays in *time* $t$.\n", "\n", "In this way we can fix the number of epochs, compute $\\beta$ and\n", "evaluate the cost function at the end. Repeating the computation will\n", "give a different result since the scheme is random by design. Then we\n", "pick the final $\\beta$ that gives the lowest value of the cost\n", "function." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import numpy as np \n", "\n", "def step_length(t,t0,t1):\n", " return t0/(t+t1)\n", "\n", "n = 100 #100 datapoints \n", "M = 5 #size of each minibatch\n", "m = int(n/M) #number of minibatches\n", "n_epochs = 500 #number of epochs\n", "t0 = 1.0\n", "t1 = 10\n", "\n", "gamma_j = t0/t1\n", "j = 0\n", "for epoch in range(1,n_epochs+1):\n", " for i in range(m):\n", " k = np.random.randint(m) #Pick the k-th minibatch at random\n", " #Compute the gradient using the data in minibatch Bk\n", " #Compute new suggestion for beta\n", " t = epoch*m+i\n", " gamma_j = step_length(t,t0,t1)\n", " j += 1\n", "\n", "print(\"gamma_j after %d epochs: %g\" % (n_epochs,gamma_j))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Program for stochastic gradient" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "%matplotlib inline\n", "\n", "# Importing various packages\n", "from math import exp, sqrt\n", "from random import random, seed\n", "import numpy as np\n", "import matplotlib.pyplot as plt\n", "from sklearn.linear_model import SGDRegressor\n", "\n", "m = 100\n", "x = 2*np.random.rand(m,1)\n", "y = 4+3*x+np.random.randn(m,1)\n", "\n", "X = np.c_[np.ones((m,1)), x]\n", "theta_linreg = np.linalg.inv(X.T @ X) @ (X.T @ y)\n", "print(\"Own inversion\")\n", "print(theta_linreg)\n", "sgdreg = SGDRegressor(max_iter = 50, penalty=None, eta0=0.1)\n", "sgdreg.fit(x,y.ravel())\n", "print(\"sgdreg from scikit\")\n", "print(sgdreg.intercept_, sgdreg.coef_)\n", "\n", "\n", "theta = np.random.randn(2,1)\n", "eta = 0.1\n", "Niterations = 1000\n", "\n", "\n", "for iter in range(Niterations):\n", " gradients = 2.0/m*X.T @ ((X @ theta)-y)\n", " theta -= eta*gradients\n", "print(\"theta from own gd\")\n", "print(theta)\n", "\n", "xnew = np.array([[0],[2]])\n", "Xnew = np.c_[np.ones((2,1)), xnew]\n", "ypredict = Xnew.dot(theta)\n", "ypredict2 = Xnew.dot(theta_linreg)\n", "\n", "\n", "n_epochs = 50\n", "t0, t1 = 5, 50\n", "def learning_schedule(t):\n", " return t0/(t+t1)\n", "\n", "theta = np.random.randn(2,1)\n", "\n", "for epoch in range(n_epochs):\n", " for i in range(m):\n", " random_index = np.random.randint(m)\n", " xi = X[random_index:random_index+1]\n", " yi = y[random_index:random_index+1]\n", " gradients = 2 * xi.T @ ((xi @ theta)-yi)\n", " eta = learning_schedule(epoch*m+i)\n", " theta = theta - eta*gradients\n", "print(\"theta from own sdg\")\n", "print(theta)\n", "\n", "plt.plot(xnew, ypredict, \"r-\")\n", "plt.plot(xnew, ypredict2, \"b-\")\n", "plt.plot(x, y ,'ro')\n", "plt.axis([0,2.0,0, 15.0])\n", "plt.xlabel(r'$x$')\n", "plt.ylabel(r'$y$')\n", "plt.title(r'Random numbers ')\n", "plt.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "**Challenge**: try to write a similar code for a Logistic Regression case.\n", "\n", "\n", "## Momentum based GD\n", "\n", "The stochastic gradient descent (SGD) is almost always used with a\n", "*momentum* or inertia term that serves as a memory of the direction we\n", "are moving in parameter space. This is typically implemented as\n", "follows" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\mathbf{v}_{t}=\\gamma \\mathbf{v}_{t-1}+\\eta_{t}\\nabla_\\theta E(\\boldsymbol{\\theta}_t) \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "
\n", "\n", "$$\n", "\\begin{equation} \n", "\\boldsymbol{\\theta}_{t+1}= \\boldsymbol{\\theta}_t -\\mathbf{v}_{t},\n", "\\label{_auto1} \\tag{1}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where we have introduced a momentum parameter $\\gamma$, with\n", "$0\\le\\gamma\\le 1$, and for brevity we dropped the explicit notation to\n", "indicate the gradient is to be taken over a different mini-batch at\n", "each step. We call this algorithm gradient descent with momentum\n", "(GDM). From these equations, it is clear that $\\mathbf{v}_t$ is a\n", "running average of recently encountered gradients and\n", "$(1-\\gamma)^{-1}$ sets the characteristic time scale for the memory\n", "used in the averaging procedure. Consistent with this, when\n", "$\\gamma=0$, this just reduces down to ordinary SGD as discussed\n", "earlier. An equivalent way of writing the updates is" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\Delta \\boldsymbol{\\theta}_{t+1} = \\gamma \\Delta \\boldsymbol{\\theta}_t -\\ \\eta_{t}\\nabla_\\theta E(\\boldsymbol{\\theta}_t),\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where we have defined $\\Delta \\boldsymbol{\\theta}_{t}= \\boldsymbol{\\theta}_t-\\boldsymbol{\\theta}_{t-1}$.\n", "\n", "## More on momentum based approaches\n", "\n", "Let us try to get more intuition from these equations. It is helpful\n", "to consider a simple physical analogy with a particle of mass $m$\n", "moving in a viscous medium with drag coefficient $\\mu$ and potential\n", "$E(\\mathbf{w})$. If we denote the particle's position by $\\mathbf{w}$,\n", "then its motion is described by" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "m {d^2 \\mathbf{w} \\over dt^2} + \\mu {d \\mathbf{w} \\over dt }= -\\nabla_w E(\\mathbf{w}).\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can discretize this equation in the usual way to get" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "m { \\mathbf{w}_{t+\\Delta t}-2 \\mathbf{w}_{t} +\\mathbf{w}_{t-\\Delta t} \\over (\\Delta t)^2}+\\mu {\\mathbf{w}_{t+\\Delta t}- \\mathbf{w}_{t} \\over \\Delta t} = -\\nabla_w E(\\mathbf{w}).\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Rearranging this equation, we can rewrite this as" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\Delta \\mathbf{w}_{t +\\Delta t}= - { (\\Delta t)^2 \\over m +\\mu \\Delta t} \\nabla_w E(\\mathbf{w})+ {m \\over m +\\mu \\Delta t} \\Delta \\mathbf{w}_t.\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Momentum parameter\n", "\n", "Notice that this equation is identical to previous one if we identify\n", "the position of the particle, $\\mathbf{w}$, with the parameters\n", "$\\boldsymbol{\\theta}$. This allows us to identify the momentum\n", "parameter and learning rate with the mass of the particle and the\n", "viscous drag as:" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\gamma= {m \\over m +\\mu \\Delta t }, \\qquad \\eta = {(\\Delta t)^2 \\over m +\\mu \\Delta t}.\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Thus, as the name suggests, the momentum parameter is proportional to\n", "the mass of the particle and effectively provides inertia.\n", "Furthermore, in the large viscosity/small learning rate limit, our\n", "memory time scales as $(1-\\gamma)^{-1} \\approx m/(\\mu \\Delta t)$.\n", "\n", "Why is momentum useful? SGD momentum helps the gradient descent\n", "algorithm gain speed in directions with persistent but small gradients\n", "even in the presence of stochasticity, while suppressing oscillations\n", "in high-curvature directions. This becomes especially important in\n", "situations where the landscape is shallow and flat in some directions\n", "and narrow and steep in others. It has been argued that first-order\n", "methods (with appropriate initial conditions) can perform comparable\n", "to more expensive second order methods, especially in the context of\n", "complex deep learning models.\n", "\n", "These beneficial properties of momentum can sometimes become even more\n", "pronounced by using a slight modification of the classical momentum\n", "algorithm called Nesterov Accelerated Gradient (NAG).\n", "\n", "In the NAG algorithm, rather than calculating the gradient at the\n", "current parameters, $\\nabla_\\theta E(\\boldsymbol{\\theta}_t)$, one\n", "calculates the gradient at the expected value of the parameters given\n", "our current momentum, $\\nabla_\\theta E(\\boldsymbol{\\theta}_t +\\gamma\n", "\\mathbf{v}_{t-1})$. This yields the NAG update rule" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\mathbf{v}_{t}=\\gamma \\mathbf{v}_{t-1}+\\eta_{t}\\nabla_\\theta E(\\boldsymbol{\\theta}_t +\\gamma \\mathbf{v}_{t-1}) \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation} \n", "\\boldsymbol{\\theta}_{t+1}= \\boldsymbol{\\theta}_t -\\mathbf{v}_{t}.\n", "\\label{_auto2} \\tag{2}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "One of the major advantages of NAG is that it allows for the use of a larger learning rate than GDM for the same choice of $\\gamma$.\n", "\n", "\n", "## Second moment of the gradient\n", "\n", "\n", "In stochastic gradient descent, with and without momentum, we still\n", "have to specify a schedule for tuning the learning rates $\\eta_t$\n", "as a function of time. As discussed in the context of Newton's\n", "method, this presents a number of dilemmas. The learning rate is\n", "limited by the steepest direction which can change depending on the\n", "current position in the landscape. To circumvent this problem, ideally\n", "our algorithm would keep track of curvature and take large steps in\n", "shallow, flat directions and small steps in steep, narrow directions.\n", "Second-order methods accomplish this by calculating or approximating\n", "the Hessian and normalizing the learning rate by the\n", "curvature. However, this is very computationally expensive for\n", "extremely large models. Ideally, we would like to be able to\n", "adaptively change the step size to match the landscape without paying\n", "the steep computational price of calculating or approximating\n", "Hessians.\n", "\n", "Recently, a number of methods have been introduced that accomplish\n", "this by tracking not only the gradient, but also the second moment of\n", "the gradient. These methods include AdaGrad, AdaDelta, RMS-Prop, and\n", "ADAM.\n", "\n", "## RMS prop\n", "\n", "In RMS prop, in addition to keeping a running average of the first\n", "moment of the gradient, we also keep track of the second moment\n", "denoted by $\\mathbf{s}_t=\\mathbb{E}[\\mathbf{g}_t^2]$. The update rule\n", "for RMS prop is given by" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", "\\mathbf{g}_t = \\nabla_\\theta E(\\boldsymbol{\\theta}) \n", "\\label{_auto3} \\tag{3}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\mathbf{s}_t =\\beta \\mathbf{s}_{t-1} +(1-\\beta)\\mathbf{g}_t^2 \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\boldsymbol{\\theta}_{t+1}=\\boldsymbol{\\theta}_t - \\eta_t { \\mathbf{g}_t \\over \\sqrt{\\mathbf{s}_t +\\epsilon}}, \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where $\\beta$ controls the averaging time of the second moment and is\n", "typically taken to be about $\\beta=0.9$, $\\eta_t$ is a learning rate\n", "typically chosen to be $10^{-3}$, and $\\epsilon\\sim 10^{-8} $ is a\n", "small regularization constant to prevent divergences. Multiplication\n", "and division by vectors is understood as an element-wise operation. It\n", "is clear from this formula that the learning rate is reduced in\n", "directions where the norm of the gradient is consistently large. This\n", "greatly speeds up the convergence by allowing us to use a larger\n", "learning rate for flat directions.\n", "\n", "\n", "## ADAM optimizer\n", "\n", "A related algorithm is the ADAM optimizer. In ADAM, we keep a running\n", "average of both the first and second moment of the gradient and use\n", "this information to adaptively change the learning rate for different\n", "parameters. In addition to keeping a running average of the first and\n", "second moments of the gradient\n", "(i.e. $\\mathbf{m}_t=\\mathbb{E}[\\mathbf{g}_t]$ and\n", "$\\mathbf{s}_t=\\mathbb{E}[\\mathbf{g}^2_t]$, respectively), ADAM\n", "performs an additional bias correction to account for the fact that we\n", "are estimating the first two moments of the gradient using a running\n", "average (denoted by the hats in the update rule below). The update\n", "rule for ADAM is given by (where multiplication and division are once\n", "again understood to be element-wise operations below)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation}\n", "\\mathbf{g}_t = \\nabla_\\theta E(\\boldsymbol{\\theta}) \n", "\\label{_auto4} \\tag{4}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\mathbf{m}_t = \\beta_1 \\mathbf{m}_{t-1} + (1-\\beta_1) \\mathbf{g}_t \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\mathbf{s}_t =\\beta_2 \\mathbf{s}_{t-1} +(1-\\beta_2)\\mathbf{g}_t^2 \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\boldsymbol{\\mathbf{m}}_t={\\mathbf{m}_t \\over 1-\\beta_1^t} \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\boldsymbol{\\mathbf{s}}_t ={\\mathbf{s}_t \\over1-\\beta_2^t} \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\boldsymbol{\\theta}_{t+1}=\\boldsymbol{\\theta}_t - \\eta_t { \\boldsymbol{\\mathbf{m}}_t \\over \\sqrt{\\boldsymbol{\\mathbf{s}}_t} +\\epsilon}, \\nonumber\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "\n", "\n", "\n", "$$\n", "\\begin{equation} \n", "\\label{_auto5} \\tag{5}\n", "\\end{equation}\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "where $\\beta_1$ and $\\beta_2$ set the memory lifetime of the first and\n", "second moment and are typically taken to be $0.9$ and $0.99$\n", "respectively, and $\\eta$ and $\\epsilon$ are identical to RMSprop.\n", "\n", "Like in RMSprop, the effective step size of a parameter depends on the\n", "magnitude of its gradient squared. To understand this better, let us\n", "rewrite this expression in terms of the variance\n", "$\\boldsymbol{\\sigma}_t^2 = \\boldsymbol{\\mathbf{s}}_t -\n", "(\\boldsymbol{\\mathbf{m}}_t)^2$. Consider a single parameter $\\theta_t$. The\n", "update rule for this parameter is given by" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "\\Delta \\theta_{t+1}= -\\eta_t { \\boldsymbol{m}_t \\over \\sqrt{\\sigma_t^2 + m_t^2 }+\\epsilon}.\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Practical tips\n", "\n", "* **Randomize the data when making mini-batches**. It is always important to randomly shuffle the data when forming mini-batches. Otherwise, the gradient descent method can fit spurious correlations resulting from the order in which data is presented.\n", "\n", "* **Transform your inputs**. Learning becomes difficult when our landscape has a mixture of steep and flat directions. One simple trick for minimizing these situations is to standardize the data by subtracting the mean and normalizing the variance of input variables. Whenever possible, also decorrelate the inputs. To understand why this is helpful, consider the case of linear regression. It is easy to show that for the squared error cost function, the Hessian of the cost function is just the correlation matrix between the inputs. Thus, by standardizing the inputs, we are ensuring that the landscape looks homogeneous in all directions in parameter space. Since most deep networks can be viewed as linear transformations followed by a non-linearity at each layer, we expect this intuition to hold beyond the linear case.\n", "\n", "* **Monitor the out-of-sample performance.** Always monitor the performance of your model on a validation set (a small portion of the training data that is held out of the training process to serve as a proxy for the test set. If the validation error starts increasing, then the model is beginning to overfit. Terminate the learning process. This *early stopping* significantly improves performance in many settings.\n", "\n", "* **Adaptive optimization methods don't always have good generalization.** Recent studies have shown that adaptive methods such as ADAM, RMSPorp, and AdaGrad tend to have poor generalization compared to SGD or SGD with momentum, particularly in the high-dimensional limit (i.e. the number of parameters exceeds the number of data points). Although it is not clear at this stage why these methods perform so well in training deep neural networks, simpler procedures like properly-tuned SGD may work as well or better in these applications.\n", "\n", "Geron's text, see chapter 11, has several interesting discussions.\n", "\n", "\n", "\n", "## Automatic differentiation\n", "\n", "[Automatic differentiation (AD)](https://en.wikipedia.org/wiki/Automatic_differentiation), \n", "also called algorithmic\n", "differentiation or computational differentiation,is a set of\n", "techniques to numerically evaluate the derivative of a function\n", "specified by a computer program. AD exploits the fact that every\n", "computer program, no matter how complicated, executes a sequence of\n", "elementary arithmetic operations (addition, subtraction,\n", "multiplication, division, etc.) and elementary functions (exp, log,\n", "sin, cos, etc.). By applying the chain rule repeatedly to these\n", "operations, derivatives of arbitrary order can be computed\n", "automatically, accurately to working precision, and using at most a\n", "small constant factor more arithmetic operations than the original\n", "program.\n", "\n", "Automatic differentiation is neither:\n", "\n", "* Symbolic differentiation, nor\n", "\n", "* Numerical differentiation (the method of finite differences).\n", "\n", "Symbolic differentiation can lead to inefficient code and faces the\n", "difficulty of converting a computer program into a single expression,\n", "while numerical differentiation can introduce round-off errors in the\n", "discretization process and cancellation\n", "\n", "\n", "\n", "Python has tools for so-called **automatic differentiation**.\n", "Consider the following example" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "f(x) = \\sin\\left(2\\pi x + x^2\\right)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "which has the following derivative" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "$$\n", "f'(x) = \\cos\\left(2\\pi x + x^2\\right)\\left(2\\pi + 2x\\right)\n", "$$" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Using **autograd** we have" ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "data": { "image/png": "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\n", "text/plain": [ "