csc 411 lecture 8 linear classification ii
play

CSC 411 Lecture 8: Linear Classification II Roger Grosse, - PowerPoint PPT Presentation

CSC 411 Lecture 8: Linear Classification II Roger Grosse, Amir-massoud Farahmand, and Juan Carrasquilla University of Toronto UofT CSC 411: 08-Linear Classification 1 / 34 Todays Agenda Todays agenda: Gradient checking with finite


  1. CSC 411 Lecture 8: Linear Classification II Roger Grosse, Amir-massoud Farahmand, and Juan Carrasquilla University of Toronto UofT CSC 411: 08-Linear Classification 1 / 34

  2. Today’s Agenda Today’s agenda: Gradient checking with finite differences Learning rates Stochastic gradient descent Convexity Multiclass classification and softmax regression Limits of linear classification UofT CSC 411: 08-Linear Classification 2 / 34

  3. Gradient Checking We’ve derived a lot of gradients so far. How do we know if they’re correct? Recall the definition of the partial derivative: f ( x 1 , . . . , x i + h , . . . , x N ) − f ( x 1 , . . . , x i , . . . , x N ) ∂ ∂ x i f ( x 1 , . . . , x N ) = lim h h → 0 Check your derivatives numerically by plugging in a small value of h, e.g. 10 − 10 . This is known as finite differences. UofT CSC 411: 08-Linear Classification 3 / 34

  4. Gradient Checking Even better: the two-sided definition ∂ f ( x 1 , . . . , x i + h , . . . , x N ) − f ( x 1 , . . . , x i − h , . . . , x N ) ∂ x i f ( x 1 , . . . , x N ) = lim 2 h h → 0 UofT CSC 411: 08-Linear Classification 4 / 34

  5. Gradient Checking Run gradient checks on small, randomly chosen inputs Use double precision floats (not the default for TensorFlow, PyTorch, etc.!) Compute the relative error: | a − b | | a | + | b | The relative error should be very small, e.g. 10 − 6 UofT CSC 411: 08-Linear Classification 5 / 34

  6. Gradient Checking Gradient checking is really important! Learning algorithms often appear to work even if the math is wrong. But: They might work much better if the derivatives are correct. Wrong derivatives might lead you on a wild goose chase. If you implement derivatives by hand, gradient checking is the single most important thing you need to do to get your algorithm to work well. UofT CSC 411: 08-Linear Classification 6 / 34

  7. Today’s Agenda Today’s agenda: Gradient checking with finite differences Learning rates Stochastic gradient descent Convexity Multiclass classification and softmax regression Limits of linear classification UofT CSC 411: 08-Linear Classification 7 / 34

  8. Learning Rate In gradient descent, the learning rate α is a hyperparameter we need to tune. Here are some things that can go wrong: α too small: α too large: α much too large: slow progress oscillations instability Good values are typically between 0.001 and 0.1. You should do a grid search if you want good performance (i.e. try 0 . 1 , 0 . 03 , 0 . 01 , . . . ). UofT CSC 411: 08-Linear Classification 8 / 34

  9. Training Curves To diagnose optimization problems, it’s useful to look at training curves: plot the training cost as a function of iteration. Warning: it’s very hard to tell from the training curves whether an optimizer has converged. They can reveal major problems, but they can’t guarantee convergence. UofT CSC 411: 08-Linear Classification 9 / 34

  10. Today’s Agenda Today’s agenda: Gradient checking with finite differences Learning rates Stochastic gradient descent Convexity Multiclass classification and softmax regression Limits of linear classification UofT CSC 411: 08-Linear Classification 10 / 34

  11. Stochastic Gradient Descent So far, the cost function J has been the average loss over the training examples: N N J ( θ ) = 1 L ( i ) = 1 � � L ( y ( x ( i ) , θ ) , t ( i ) ) . N N i =1 i =1 By linearity, N ∂ L ( i ) ∂ J ∂ θ = 1 � ∂ θ . N i =1 Computing the gradient requires summing over all of the training examples. This is known as batch training. Batch training is impractical if you have a large dataset (e.g. millions of training examples)! UofT CSC 411: 08-Linear Classification 11 / 34

  12. Stochastic Gradient Descent Stochastic gradient descent (SGD): update the parameters based on the gradient for a single training example: θ ← θ − α∂ L ( i ) ∂ θ SGD can make significant progress before it has even looked at all the data! Mathematical justification: if you sample a training example at random, the stochastic gradient is an unbiased estimate of the batch gradient: N � ∂ L ( i ) � ∂ L ( i ) = 1 = ∂ J � E ∂ θ . ∂ θ N ∂ θ i =1 Problem: if we only look at one training example at a time, we can’t exploit efficient vectorized operations. UofT CSC 411: 08-Linear Classification 12 / 34

  13. Stochastic Gradient Descent Compromise approach: compute the gradients on a medium-sized set of training examples, called a mini-batch. Each entire pass over the dataset is called an epoch. Stochastic gradients computed on larger mini-batches have smaller variance: � S � � � � � S ∂ L ( i ) ∂ L ( i ) ∂ L ( i ) 1 = 1 = 1 � � Var S 2 Var S Var S ∂θ j ∂θ j ∂θ j i =1 i =1 The mini-batch size S is a hyperparameter that needs to be set. Too large: takes more memory to store the activations, and longer to compute each gradient update Too small: can’t exploit vectorization A reasonable value might be S = 100. UofT CSC 411: 08-Linear Classification 13 / 34

  14. Stochastic Gradient Descent Batch gradient descent moves directly downhill. SGD takes steps in a noisy direction, but moves downhill on average. stochastic gradient descent batch gradient descent UofT CSC 411: 08-Linear Classification 14 / 34

  15. SGD Learning Rate In stochastic training, the learning rate also influences the fluctuations due to the stochasticity of the gradients. Typical strategy: Use a large learning rate early in training so you can get close to the optimum Gradually decay the learning rate to reduce the fluctuations UofT CSC 411: 08-Linear Classification 15 / 34

  16. SGD Learning Rate Warning: by reducing the learning rate, you reduce the fluctuations, which can appear to make the loss drop suddenly. But this can come at the expense of long-run performance. UofT CSC 411: 08-Linear Classification 16 / 34

  17. Today’s Agenda Today’s agenda: Gradient checking with finite differences Learning rates Stochastic gradient descent Convexity Multiclass classification and softmax regression Limits of linear classification UofT CSC 411: 08-Linear Classification 17 / 34

  18. Convex Sets Convex Sets A set S is convex if any line segment connecting points in S lies entirely within S . Mathematically, x 1 , x 2 ∈ S = ⇒ λ x 1 + (1 − λ ) x 2 ∈ S for 0 ≤ λ ≤ 1 . A simple inductive argument shows that for x 1 , . . . , x N ∈ S , weighted averages, or convex combinations, lie within the set: λ 1 x 1 + · · · + λ N x N ∈ S for λ i > 0 , λ 1 + · · · λ N = 1 . UofT CSC 411: 08-Linear Classification 18 / 34

  19. Convex Functions A function f is convex if for any x 0 , x 1 in the domain of f , f ((1 − λ ) x 0 + λ x 1 ) ≤ (1 − λ ) f ( x 0 ) + λ f ( x 1 ) Equivalently, the set of points lying above the graph of f is convex. Intuitively: the function is bowl-shaped. UofT CSC 411: 08-Linear Classification 19 / 34

  20. Convex Functions We just saw that the least-squares loss 2 ( y − t ) 2 is function 1 convex as a function of y For a linear model, z = w ⊤ x + b is a linear function of w and b . If the loss function is convex as a function of z , then it is convex as a function of w and b . UofT CSC 411: 08-Linear Classification 20 / 34

  21. Convex Functions Which loss functions are convex? UofT CSC 411: 08-Linear Classification 21 / 34

  22. Convex Functions Why we care about convexity All critical points are minima Gradient descent finds the optimal solution (more on this in a later lecture) UofT CSC 411: 08-Linear Classification 22 / 34

  23. Today’s Agenda Today’s agenda: Gradient checking with finite differences Learning rates Stochastic gradient descent Convexity Multiclass classification and softmax regression Limits of linear classification UofT CSC 411: 08-Linear Classification 23 / 34

  24. Multiclass Classification What about classification tasks with more than two categories? UofT CSC 411: 08-Linear Classification 24 / 34

  25. Multiclass Classification Targets form a discrete set { 1 , . . . , K } . It’s often more convenient to represent them as one-hot vectors, or a one-of-K encoding: t = (0 , . . . , 0 , 1 , 0 , . . . , 0) � �� � entry k is 1 UofT CSC 411: 08-Linear Classification 25 / 34

  26. Multiclass Classification Now there are D input dimensions and K output dimensions, so we need K × D weights, which we arrange as a weight matrix W . Also, we have a K -dimensional vector b of biases. Linear predictions: � z k = w kj x j + b k j Vectorized: z = Wx + b UofT CSC 411: 08-Linear Classification 26 / 34

  27. Multiclass Classification A natural activation function to use is the softmax function, a multivariable generalization of the logistic function: e z k y k = softmax ( z 1 , . . . , z K ) k = � k ′ e z k ′ The inputs z k are called the logits. Properties: Outputs are positive and sum to 1 (so they can be interpreted as probabilities) If one of the z k ’s is much larger than the others, softmax ( z ) is approximately the argmax. (So really it’s more like “soft-argmax”.) Exercise: how does the case of K = 2 relate to the logistic function? Note: sometimes σ ( z ) is used to denote the softmax function; in this class, it will denote the logistic function applied elementwise. UofT CSC 411: 08-Linear Classification 27 / 34

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend