Due Jan 4, 2:59 PM +07
If X is the standard notation for the input to an RNN, what are the standard notations for the outputs?
What is a sequence to vector if an RNN has 30 cells numbered 0 to 29
What does a Lambda layer in a neural network do?
What does the axis parameter of tf.expand_dims do?
A new loss function was introduced in this module, named after a famous statistician. What is it called?
What’s the primary difference between a simple RNN and an LSTM
If you want to clear out all temporary variables that tensorflow might have from previous sessions, what code do you run?
What happens if you define a neural network with these two layers?
tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(32)),
tf.keras.layers.Bidirectional(tf.keras.layers.LSTM(32)),
tf.keras.layers.Dense(1),