摘要: 1.循环神经网络的前向传播 1.1RNN单元 向量化m个样本,x<t>的维度为(nx,m),a<t>的维度为(na,m) 1 import numpy as np 2 from rnn_utils import * 3 4 #单步前向传播 5 def rnn_cell_forward(xt, a_p 阅读全文
posted @ 2020-07-02 23:21 最咸的鱼 阅读(465) 评论(0) 推荐(0) 编辑