Deep Learning Course 5
Wow, I completed them before the deadline.
😃😃😃
Deep Learning Specialization Certificate
Week 1
Building a Recurrent Neural Network - Step by Step
1.1 - RNN Cell
1 | a_next = np.tanh(np.matmul(Waa, a_prev) + np.matmul(Wax, xt) + ba) |
1.2 - RNN Forward Pass
1 | xt = x[:,:,t] |
2 - Long Short-Term Memory (LSTM) Network
1 | concat = np.concatenate((a_prev, xt), axis=0) |
2.2 - Forward Pass for LSTM
1 | Wy = parameters['Wy'] |
…
There is too much code and I didn’t have time to record them as I have received the Certificate.
Translated by gpt-3.5-turbo