深度学习课程 5
哇,我在截止日期之前完成了它们。
😃😃😃
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'] |
…
Too much code and didn’t have time to record them as I have got the Certificate.