4.3 深层网络中的前向传播(Forward propagation in a Deep Network )

对于第ll层,其正向传播过程的Z[l]Z^{[l]}A[l]A^{[l]}可以表示为:

Z[l]=W[l]A[l1]+b[l]Z^{[l]}=W^{[l]}A^{[l-1]}+b^{[l]}
A[l]=g[l](Z[l])A^{[l]}=g^{[l]}(Z^{[l]})

其中l=1,,Ll=1,\cdots,L

Last updated