training multi dimensional features using newff or newpr

1 次查看(过去 30 天)
Hello there,
I am trying to train my a neural network using newff. My features are muti dimensional, i.e. having 13 columns and 20 rows against one sample. I have 100 samples of input. Is it possible that I train NN with these features without reducing their dimensions? If possible than how? matlab allows one sample per column so I put all 13 feature-columns of one sample together in one column which I suppose is effceting my results.
would anyone suggest anyother way to tackle this problem? thanks in advance.

采纳的回答

Greg Heath
Greg Heath 2012-6-23
If the N input vectors are I-dimensional and the N output vectors are O-dimensional the training matrices have sizes
[ I N ] = size(input)
[ O N ] = size(target)
To design a single hidden layer MLPNN with I-H-O node topology
net = newff(input,target,H);
Hope this helps.
Greg

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by