0

I had built a neural network. In the weights update step the mean error quadratiqur goes directly to 0 for example

mean error quadratic 1 =  1.2
mean error quadratic 1 = 0 
mean error quadratic 1 = 0 
mean error quadratic 1 = 0 
mean error quadratic 1 = 0 
mean error quadratic 1 = 0 ....................

I don't know what is the problem

the size of my neual network is:

input = 324 * 540 target = 10 * 540

when i try with an other data with this size

input = 81* 540 target = 10 * 540

it works.

maybe the problem is in the learning rate ?

thor
  • 21,418
  • 31
  • 87
  • 173
Amal Kostali Targhi
  • 907
  • 3
  • 11
  • 22

1 Answers1

0

This sounds like a problem with the mean error quadratic calculator.

The nn couldn't converge that fast (as you know), and a problem with the nn would probably throw an error. On exception would be if the nn happens to round to numbers that give outputs that match your specific sample (if answer is 0 and all weights round to 0).

Basically, I suspect that this is due to a small set of sample data, or a problem with the mean error quadratic calculator.

Hope this helps!

user31415
  • 446
  • 7
  • 16