Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does bit fail mean?

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.

like image 684
The Student Avatar asked Nov 08 '14 19:11

The Student


1 Answers

The number '33' is the amount above the 'difference' between your output and the expected target output during training of the neural network. This simply signifies that your neural network deviates by 33 bits 'too much' from the desired output. Note that it counts all of the output and also gives a current 'error rate', which for you is 37.5%. The standard error rate tolerance is 0.35 as per the documentation, so assuming this, you have 2.5% too much error bits corresponding to 33 bits in a 33*40 = 1320-bit output. Or at least that's what I understand from these documentation pages.

You possibly accidentally have more than 2 outputs. 1320/22 = 60.

like image 53
aphid Avatar answered Nov 01 '22 16:11

aphid