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.
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!