循环神经网络代码RNN-超全注释#inputst时刻序列,也就是相当于输入#targetst+1时刻序列,也就是相当于输出#hprevt-1时刻的隐藏层神经元激活值deflossFun(inputs,targets,hprev):xs,hs,ys,ps={},{},{},{}hs[-1]=np.copy(hprev)print('hs=',hs)loss=0#前向传导inputs6xnfortinrange(len(inputs)):