patternnet for classification to 5bit targets?
古いコメントを表示
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!
採用された回答
その他の回答 (1 件)
Greg Heath
2012 年 10 月 26 日
0 投票
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 件のコメント
renz
2012 年 10 月 26 日
カテゴリ
ヘルプ センター および File Exchange で Deep Learning Toolbox についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!