My neural network has 22 inputs of 5184 values (two digit values, images converted to bytes), and I tried to set 2 output neurons with value 0
or 1
, like:
<input data line with 5184 values>
0 1
<input data line with 5184 values>
1 0
<input data line with 5184 values>
.
.
.
From training results :
Epochs 1. Current error: 0.3750000000. Bit fail 33.
What is this bit fail? The documentation says:
The number of fail bits; means the number of output neurons which differ more than the bit fail limit.
How can I have 33 output neurons fail for only 2 output neurons? I imagine this 33 could be from a total of 44 outputs (2 from each of the 22 inputs). But documentation does not confirm this.