How can you classify multidimensional data to 2 classes using neural networks
이전 댓글 표시
I have an input matrix (24,000x64) in which there are 100 feature samples of 240 trials across 64 channels. I would like to classify all trials each consisting of 100 samples to 2 classes.
What would be an efficient way to do this using neural networks?
How should I present input into the network?
What topology should I use?
How to prepare the target vector? Thank you
답변 (1개)
Walter Roberson
2015년 12월 22일
0 개 추천
You need to reshape to a 240 * (100*64) matrix (or the transpose of it). You do not actually have 100 sample features: you have 100*64 sample features because the features are different for every channel. Your target vector would be length 240 (or possibly 240 x 2 depending which network you train with.)
For information on using networks for classifications see http://www.mathworks.com/help/nnet/gs/classify-patterns-with-a-neural-network.html
댓글 수: 4
Siddharth Talwar
2015년 12월 23일
편집: Siddharth Talwar
2015년 12월 23일
Walter Roberson
2015년 12월 23일
6400 inputs is fine as far as NN care.
You can use cell arrays and implicit time series; see the cell array format description at http://www.mathworks.com/help/nnet/ref/train.html . However, the implication of using those is that the input for each of the channels is not simultaneously present, which does not sound like what you are dealing with: it sounds like you are reading 64 different probes each of which has 100 associated values at the same time. I could be wrong though as you did not really explain that part.
If 6400 input values seems to be too much then you should be considering feature reduction.
Greg Heath
2015년 12월 24일
240 vectors only define, at most, a 239-dimensional space.
Therefore you should reduce the input dimensionality to less than or equal to 239.
Hope this helps.
Greg
Siddharth Talwar
2015년 12월 29일
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!