RNN Flashcards

1
Q

What are RNNs?

A

Recurrent neural networks

Output of one neuron feeds back into another neuron (even itself)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are some properties of RNNs?

A

Has short term memory
Can’t use regular back prop - back prop through time or truncated back prop through time
Exploding/vanishing gradients
Not that useful… by themselves
Good for temporally dependent tasks - we can think of music as temporally dependent - say we play the 1 and we’re in a major key - our next chord/note now depends on the major 1 to preserve consonance - Basically non MDPs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are the types of RNNs?

A

LSTM models
Self supervised models
World Models
Generative Adversarial Networks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the components of an LSTM node?

A

Cell memory
Forget filter
Input filter
Output filter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are self supervised models?

A

Learn through observation
Combo of supervised and non supervised = given labelled training data but makes observations about the underlying structure of said data implicitly

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do SS models learn?

A

By removing pieces of training data and attempt to predict what those pieces should have been - for a video remove some frames

How well did you know this?
1
Not at all
2
3
4
5
Perfectly