patternnet for classification to 5bit targets?
Show older comments
I have 30 classifications in my target.
Everything that I've searched regarding patternnet uses 1-of-C or 1-of(C-1) representations only.
I MUST use 5 output neurons only: I'm using 5 bit-representation for each category.
Can I do this using patternnet? If yes, how? If no, what is the best network to use here in Neural Network toolbox, and how? Will a simple feedforwardnet suffice?
Thanks in advance!
Accepted Answer
More Answers (1)
Greg Heath
on 26 Oct 2012
0 votes
Yes you can use 5 bit binary coding. However, the training will be quite a bit(no pun intended) more difficult.
There is no mystery. For four classes the targets are
transpose([ 0 0 ; 0 1; 1 0 ; 1 1 ]) instead of eye(4).
See the comp.ai.neural-nets FAQ.
Hope this helps.
Greg
2 Comments
renz
on 26 Oct 2012
Categories
Find more on Deep Learning Toolbox in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!