Jump to content

  • Log In with Google      Sign In   
  • Create Account

Awesome job so far everyone! Please give us your feedback on how our article efforts are going. We still need more finished articles for our May contest theme: Remake the Classics

#ActualNicoLaCrevette

Posted 18 March 2012 - 02:04 PM

The output of the neural network is always between 0.4 - 0.6.


...
(i1*W1 + i2 + W2 ... In * Wn)


... or maybe is it because you didn't put a bias to your nodes ?
(W0 + i1*W1 + i2*W2 ... In * Wn) , where W0 is a weight with the constant input 1.

A simple way to add a bias is to add a 1.0 component to the input vector

#1NicoLaCrevette

Posted 18 March 2012 - 02:04 PM

The output of the neural network is always between 0.4 - 0.6.


...
(i1*W1 + i2 + W2 ... In * Wn)


... or maybe is it because you didn't put a bias to your nodes ?
(W0 + i1*W1 + i2 + W2 ... In * Wn) , where W0 is a weight with the constant input 1.

A simple way to add a bias is to add a 1.0 component to the input vector

PARTNERS