what Neural Network should i use?

2 views (last 30 days)
i got 200 "1x3 matrices" assigned to 0 and 1,
i use as testing sample the 1x3 matrices and as targets the 1 and 0
is patternnet the correct NN to use?

Accepted Answer

Greg Heath
Greg Heath on 24 May 2013
Individual inputs are 3 x 1 vectors, not 1 x 3 matrices.
If you use patternnet and/or plotconfusion use [1 0 ]' and [ 0 1 ]' as targets:
[ 3 200 ] = size(input)
[ 2 200 ] = size(target)
Thank you for formally accepting my answer
Greg

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!