Recurrent Neural Networks (RNN) and Long-Short-Term-Memory (LSTM) 1

Yuan YAO HKUST Summary

´ We have shown: ´ First order optimization methods: GD (BP), SGD, Nesterov, Adagrad, ADAM, RMSPROP, etc. ´ Second order optimzation methods: L-BFGS ´ Regularization methods: Penalty (L2/L1/Elastic), Dropout, , , etc. ´ CNN Architectures: LeNet5, Alexnet, VGG, GoogleNet, Resnet ´ Now ´ Recurrent Neural Networks ´ LSTM ´ Reference: ´ Feifei Li, Stanford cs231n Last Time: CNN Architectures

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 8 May 4, 2017 Last Time: CNN Architectures

AlexNet and VGG have tons of parameters in the fully connected layers

AlexNet: ~62M parameters

FC6: 256x6x6 -> 4096: 38M params FC7: 4096 -> 4096: 17M params FC8: 4096 -> 1000: 4M params ~59M params in FC layers!

ResNet allows deep networks with small number of params. Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 9 May 4, 2017 Recurrent Neural Networks “Vanilla” Neural Network

Vanilla Neural Networks

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 11 May 4, 2017 Recurrent Neural Networks: Process Sequences

e.g. Image Captioning image -> sequence of words

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 12 May 4, 2017 Recurrent Neural Networks: Process Sequences

e.g. Sentiment Classification sequence of words -> sentiment

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 13 May 4, 2017 Recurrent Neural Networks: Process Sequences

e.g. Machine Translation seq of words -> seq of words

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 14 May 4, 2017 Recurrent Neural Networks: Process Sequences

e.g. Video classification on frame level

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 15 May 4, 2017 Sequential Processing of Non-Sequence Data

Classify images by taking a series of “glimpses”

Ba, Mnih, and Kavukcuoglu, “Multiple Object Recognition with Visual Attention”, ICLR 2015. Gregor et al, “DRAW: A For Image Generation”, ICML 2015 Figure copyright Karol Gregor, Ivo Danihelka, Alex Graves, Danilo Jimenez Rezende, and Daan Wierstra, 2015. Reproduced with permission. Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 16 May 4, 2017 Recurrent Neural Network

RNN

x

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 18 May 4, 2017 Recurrent Neural Network

usually want to y predict a vector at some time steps

RNN

x

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 19 May 4, 2017 Recurrent Neural Network

We can process a sequence of vectors x by applying a recurrence formula at every time step: y

RNN new state old state input vector at some time step some function x with parameters W

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 20 May 4, 2017 Recurrent Neural Network

We can process a sequence of vectors x by applying a recurrence formula at every time step: y

RNN

Notice: the same function and the same set x of parameters are used at every time step.

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 21 May 4, 2017 The basics of decision trees.

Vanilla Recurrent Neural NetworksRegression trees State(Vanilla) Space equations Recurrent in feedback dynamical Neural systems Network The state consists of a single “hidden” vector h:

y

Trees can be applied to both regression and classifcation. • CARTRNN refers to classification and regression trees. • We first consider regression trees through an example of predicting • Baseballx players’ salaries.

Or, yt = softmax(Whyht) Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 22 May 4, 2017

Yuan YAO (HKUST) March 22, 2018 6 / 67 RNN: Computational Graph

h f h f h f h h 0 W 1 W 2 W 3 … T

x1 x2 x3

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 25 May 4, 2017 Time invariant systems RNN: Computational Graph

Re-use the same weight matrix at every time-step

h f h f h f h h 0 W 1 W 2 W 3 … T

x x x W 1 2 3

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 26 May 4, 2017 Outputs added

RNN: Computational Graph: Many to Many

y y y y1 2 3 T

h f h f h f h h 0 W 1 W 2 W 3 … T

x x x W 1 2 3

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 27 May 4, 2017 Loss modules

RNN: Computational Graph: Many to Many L

y L y L y L y1 L1 2 2 3 3 T T

h f h f h f h h 0 W 1 W 2 W 3 … T

x x x W 1 2 3

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 29 May 4, 2017 RNN: Computational Graph: Many to One

y

h f h f h f h h 0 W 1 W 2 W 3 … T

x x x W 1 2 3

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 30 May 4, 2017 RNN: Computational Graph: One to Many

y y y y3 3 3 T

h f h f h f h h 0 W 1 W 2 W 3 … T

x W

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 31 May 4, 2017 Sequence to Sequence: Many-to-one + one-to-many One to many: Produce output sequence from single input vector Many to one: Encode input sequence in a single vector y y

1 2

h h h h h f f f … h h … W W W fW fW fW 0 1 2 3 T 1 2

x x x W W 1 2 3 1 2

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 33 May 4, 2017 Example: Character-level Language Model

Vocabulary: [h,e,l,o]

Example training sequence: “hello”

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 34 May 4, 2017 Example: Character-level Language Model

Vocabulary: [h,e,l,o]

Example training sequence: “hello”

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 35 May 4, 2017 Example: Character-level Language Model

Vocabulary: [h,e,l,o]

Example training sequence: “hello”

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 36 May 4, 2017 “e” “l” “l” “o” Example: Sample

.03 .25 .11 .11 Character-level .13 .20 .17 .02 Softmax .00 .05 .68 .08 Language Model .84 .50 .03 .79 Sampling

Vocabulary: [h,e,l,o]

At test-time sample characters one at a time, feed back to model

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 37 May 4, 2017 “e” “l” “l” “o” Example: Sample

.03 .25 .11 .11 Character-level .13 .20 .17 .02 Softmax .00 .05 .68 .08 Language Model .84 .50 .03 .79 Sampling

Vocabulary: [h,e,l,o]

At test-time sample characters one at a time, feed back to model

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 38 May 4, 2017 “e” “l” “l” “o” Example: Sample

.03 .25 .11 .11 Character-level .13 .20 .17 .02 Softmax .00 .05 .68 .08 Language Model .84 .50 .03 .79 Sampling

Vocabulary: [h,e,l,o]

At test-time sample characters one at a time, feed back to model

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 39 May 4, 2017 “e” “l” “l” “o” Example: Sample

.03 .25 .11 .11 Character-level .13 .20 .17 .02 Softmax .00 .05 .68 .08 Language Model .84 .50 .03 .79 Sampling

Vocabulary: [h,e,l,o]

At test-time sample characters one at a time, feed back to model

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 40 May 4, 2017 Forward through entire sequence to compute loss, then backward through through time entire sequence to compute gradient

Loss

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 41 May 4, 2017 Truncated Backpropagation through time Loss

Run forward and backward through chunks of the sequence instead of whole sequence

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 42 May 4, 2017 Truncated Backpropagation through time Loss

Carry hidden states forward in time forever, but only backpropagate for some smaller number of steps

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 43 May 4, 2017 Truncated Backpropagation through time Loss

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 44 May 4, 2017 Example: Text->RNN

y

RNN

x

https://gist.github.com/karpathy/d4dee566867f8291f086 Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 46 May 4, 2017 at first: train more

train more

train more

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 47 May 4, 2017 Image Captioning

Figure from Karpathy et a, “Deep Visual-Semantic Alignments for Generating Image Descriptions”, CVPR 2015; figure copyright IEEE, 2015. Explain Images with Multimodal Recurrent Neural Networks, Mao et al. Reproduced for educational purposes. Deep Visual-Semantic Alignments for Generating Image Descriptions, Karpathy and Fei-Fei Show and Tell: A Neural Image Caption Generator, Vinyals et al. Long-term Recurrent Convolutional Networks for Visual Recognition and Description, Donahue et al. Learning a Recurrent Visual Representation for Image Caption Generation, Chen and Zitnick

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 63 May 4, 2017 Recurrent Neural Network

Convolutional Neural Network

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 64 May 4, 2017 test image test image

X test image

y0 before: h = tanh(Wxh * x + Whh * h) h0 Wih now: h = tanh(Wxh * x + Whh * h + Wih * v)

x0 v test image

y0

sample! h0

x0

test image

y0 y1

sample! h0 h1

x0

test image

y0 y1 y2 sample token

h0 h1 h2 => finish.

x0

Captions generated using neuraltalk2 All images are CC0 Public domain: cat suitcase, cat tree, dog, bear, Image Captioning: Example Results surfers, tennis, giraffe, motorcycle Popular Architectures

A cat sitting on a A cat is sitting on a tree A dog is running in the A white teddy bear sitting in suitcase on the floor branch grass with a frisbee the grass

Two people walking on A tennis player in action Two giraffes standing in a A man riding a dirt bike on the beach with surfboards on the court grassy field a dirt track

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 75 May 4, 2017 Captions generated using neuraltalk2 All images are CC0 Public domain: fur Image Captioning: Failure Cases coat, handstand, spider web, baseball

A bird is perched on a tree branch

A woman is holding a cat in her hand

A man in a baseball uniform throwing a ball

A woman standing on a beach holding a surfboard A person holding a computer mouse on a desk Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 76 May 4, 2017 Bengio et al, “Learning long-term dependencies with is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

W tanh

stack ht-1 ht

xt

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 90 May 4, 2017 Bengio et al, “Learning long-term dependencies with gradient descent is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

Backpropagation from ht to ht-1 multiplies by W T (actually Whh )

W tanh

stack ht-1 ht

xt

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 91 May 4, 2017 Bengio et al, “Learning long-term dependencies with gradient descent is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

h0 h1 h2 h3 h4

x1 x2 x3 x4

Computing gradient

of h0 involves many factors of W (and repeated tanh)

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 92 May 4, 2017 Bengio et al, “Learning long-term dependencies with gradient descent is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

h0 h1 h2 h3 h4

x1 x2 x3 x4

Largest singular value > 1: Computing gradient Exploding gradients of h0 involves many factors of W Largest singular value < 1: (and repeated tanh) Vanishing gradients

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 93 May 4, 2017 Bengio et al, “Learning long-term dependencies with gradient descent is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

h0 h1 h2 h3 h4

x1 x2 x3 x4

Largest singular value > 1: Gradient clipping: Scale Computing gradient Exploding gradients gradient if its norm is too big of h0 involves many factors of W Largest singular value < 1: (and repeated tanh) Vanishing gradients

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 94 May 4, 2017 Bengio et al, “Learning long-term dependencies with gradient descent is difficult”, IEEE Transactions on Neural Networks, 1994 Vanilla RNN Gradient Flow Pascanu et al, “On the difficulty of training recurrent neural networks”, ICML 2013

h0 h1 h2 h3 h4

x1 x2 x3 x4

Largest singular value > 1: Computing gradient Exploding gradients of h0 involves many factors of W Largest singular value < 1: Change RNN architecture (and repeated tanh) Vanishing gradients

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 95 May 4, 2017 Long Short Term Memory (LSTM) Long Short Term Memory (LSTM)

Vanilla RNN LSTM

Hochreiter and Schmidhuber, “Long Short Term Memory”, Neural Computation 1997 Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 96 May 4, 2017 Long Short Term Memory (LSTM) [Hochreiter et al., 1997] f: Forget gate, Whether to erase cell i: Input gate, whether to write to cell g: Gate gate (?), How much to write to cell vector from o: Output gate, How much to reveal cell below (x)

x sigmoid i

h sigmoid f W vector from sigmoid o before (h) tanh g 4h x 2h 4h 4*h

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 97 May 4, 2017 Long Short Term Memory (LSTM) [Hochreiter et al., 1997]

☉ + c ct-1 t f i W ☉ tanh g stack ht-1 ☉ o ht

xt Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 98 May 4, 2017 Long Short Term Memory (LSTM): Gradient Flow [Hochreiter et al., 1997]

Backpropagation from ct to ct-1 only elementwise multiplication by f, no matrix ☉ + c ct-1 t multiply by W f i W ☉ tanh g stack ht-1 ☉ o ht

xt Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 99 May 4, 2017 Long Short Term Memory (LSTM): Gradient Flow [Hochreiter et al., 1997] Uninterrupted gradient flow! c0 c1 c2 c3 3x3 conv, 128 / 2 / 128 conv, 3x3 7x7 conv, 64 / 2 / 64 conv, 7x7 3x3 conv, 128 conv, 3x3 128 conv, 3x3 128 conv, 3x3 128 conv, 3x3 3x3 conv, 128 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 FC 1000 FC Softmax

Similar to ResNet! Input Pool Pool ...

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 101 May 4, 2017 Long Short Term Memory (LSTM): Gradient Flow [Hochreiter et al., 1997] Uninterrupted gradient flow! c0 c1 c2 c3

In between: Highway Networks 3x3 conv, 128 / 2 / 128 conv, 3x3 7x7 conv, 64 / 2 / 64 conv, 7x7 3x3 conv, 128 conv, 3x3 128 conv, 3x3 128 conv, 3x3 128 conv, 3x3 3x3 conv, 128 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 3x3 conv, 64 conv, 3x3 64 conv, 3x3 FC 1000 FC Softmax

Similar to ResNet! Input Pool Pool ...

Srivastava et al, “Highway Networks”, ICML DL Workshop 2015 Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 102 May 4, 2017 Multilayer RNNs

LSTM:

depth

time Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 89 May 4, 2017 [An Empirical Exploration of Other RNN Variants Recurrent Network Architectures, Jozefowicz et al., 2015] GRU [Learning phrase representations using rnn encoder-decoder for statistical machine translation, Cho et al. 2014]

[LSTM: A Search Space Odyssey, Greff et al., 2015]

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 103 May 4, 2017 Image Captioning with Attention

RNN focuses its attention at a different spatial location when generating each word

Xu et al, “Show, Attend, and Tell: Neural Image Caption Generation with Visual Attention”, ICML 2015 Figure copyright Kelvin Xu, Jimmy Lei Ba, Jamie Kiros, Kyunghyun Cho, Aaron Courville, Ruslan Salakhutdinov, Richard S. Zemel, and Yoshua Benchio, 2015. Reproduced with permission. Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 77 May 4, 2017 Image Captioning with Attention

Distribution over L locations

a1

CNN h0

Features: Image: L x D H x W x 3

Xu et al, “Show, Attend and Tell: Neural Image Caption Generation with Visual Attention”, ICML 2015

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 79 May 4, 2017 Image Captioning with Attention

Distribution over L locations

a1

CNN h0

Features: Image: L x D Weighted H x W x 3 z1 features: D Weighted Xu et al, “Show, Attend and Tell: Neural combination Image Caption Generation with Visual Attention”, ICML 2015 of features

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 80 May 4, 2017 Image Captioning with Attention

Distribution over L locations

a1

CNN h0 h1

Features: Image: L x D Weighted H x W x 3 z1 y1 features: D Weighted Xu et al, “Show, Attend and Tell: Neural combination First word Image Caption Generation with Visual Attention”, ICML 2015 of features

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 81 May 4, 2017 Image Captioning with Attention

Distribution over Distribution L locations over vocab

a1 a2 d1

CNN h0 h1

Features: Image: L x D Weighted H x W x 3 z1 y1 features: D Weighted Xu et al, “Show, Attend and Tell: Neural combination First word Image Caption Generation with Visual Attention”, ICML 2015 of features

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 82 May 4, 2017 Image Captioning with Attention

Distribution over Distribution L locations over vocab

a1 a2 d1 a3 d2

CNN h0 h1 h2

Features: Image: L x D Weighted H x W x 3 z1 y1 z2 y2 features: D Weighted Xu et al, “Show, Attend and Tell: Neural combination First word Image Caption Generation with Visual Attention”, ICML 2015 of features

Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 84 May 4, 2017 Image Captioning with Attention

Soft attention

Hard attention

Xu et al, “Show, Attend, and Tell: Neural Image Caption Generation with Visual Attention”, ICML 2015 Figure copyright Kelvin Xu, Jimmy Lei Ba, Jamie Kiros, Kyunghyun Cho, Aaron Courville, Ruslan Salakhutdinov, Richard S. Zemel, and Yoshua Benchio, 2015. Reproduced with permission. Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 85 May 4, 2017 Image Captioning with Attention

Xu et al, “Show, Attend, and Tell: Neural Image Caption Generation with Visual Attention”, ICML 2015 Figure copyright Kelvin Xu, Jimmy Lei Ba, Jamie Kiros, Kyunghyun Cho, Aaron Courville, Ruslan Salakhutdinov, Richard S. Zemel, and Yoshua Benchio, 2015. Reproduced with permission. Fei-Fei Li & Justin Johnson & Serena Yeung Lecture 10 - 86 May 4, 2017 Summary

´ RNN is flexible in architectures ´ Vanilla RNNs are simple but don’t work very well ´ Common to use LSTM or GRU: their additive interactions improve gradient flow ´ Backward flow of gradients in RNN can explode or vanish. ´ Exploding is controlled with gradient clipping. ´ Vanishing is controlled with additive interactions ´ Better/simpler architectures are a hot topic of current research ´ Better understanding (both theoretical and empirical) is needed Thank you!