Feedforward Neural Network

Will there ever come a point in my epoch where my weights would become greater than 1 if i used the logistic function as my sigmoid? Just wanna check if i'm coding the proper way for my feedforward implementation. Thanks.


That's possible. Eg If you have a 1-input, 1-output feedforward network that has no bias, your only training input is 0.1 and the corresponding output is 1, then the higher the weight, the better. The logistic function simply ensures that the output is between 0 and 1.

链接地址: http://www.djcxy.com/p/32074.html

上一篇: TensorFlow:简单循环神经网络

下一篇: 前馈神经网络