Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I got a neural network that is meant to do backpropagation.

I've been using the following for weight update on the hidden layer

Δwji = η × δj × yi

where δj is φ'(vj) * ej where vj = Σi wjiyi, and for output layer and φ'(vj) * sum(δk*wkj) for previous layers

However, one of the bias for the hidden units always goes to infinity. What is the meaning of it?

EDIT:

The values going to Infinity turn out to be some input value vj from some neurons. So, the meaning of this is that my NN is just reinforcing the fact that an specific neuron should always fire?

Could it also mean I lack of a variety of examples for those specific inputs when training?

share|improve this question

2 Answers

The convergence in backpropagation learning is not guaranteed for every problem and in every condition. For example the algorithm may diverge if exist some direction in weight space that is infinitely decreasing.

You can try to reduce the learning rate η (often if this value is too high the ANN will diverge completely) or change your problem encoding or increase the training set variety.

share|improve this answer
I tried the 3 of your suggestions but still no change. I still get a bias going to infinity, and the NN fails with a 0% accuracy – javaNoober Oct 20 '11 at 12:55
up vote 0 down vote accepted

After trial and error turned out the problem was not enough neurons on the hidden layer. I started to see results after adding neurons equal to half of the inputs. Al tough there is no official formula at the ideal number of neurons. It varies for every problem

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.