So there is grate sample (only one real sample we found). And it is quite limiting. It shows how to create an architecture of artificial neutral network where all neurons of one layer are connected (forward) to all neurons of following (next) layer. We want to manage this connections so to create a ANN where each neuron of second layer is only connected to 2 neurons of next layer. so we want:

           Layer 1: 2 neurons (2 inputs)
           Layer 2: 3 neurons (hidden layer) (each neuron is connected to 2 neurons of next Layer (3) )
           Layer 3: 3 neurons (hidden layer)
           Layer 4: 1 neurons (1 output)
link|improve this question

1  
Not sure how to do this with OpenCV, but I've used this back-prop network extensively, and I think it may do what you want. – Albert Perrien Apr 13 '11 at 1:31
1  
This may be useful as well. – Albert Perrien Apr 13 '11 at 1:39
feedback

1 Answer

May be you can initialize the we weight for the connection you dont want to zero and make the learning rate for those weights to zero.

link|improve this answer
Please, show us source example of how to do such thing. – Blender Apr 15 '11 at 20:23
feedback

Your Answer

 
or
required, but never shown

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