필터 지우기
필터 지우기

Neural Network Classification

조회 수: 3 (최근 30일)
kunle
kunle 2012년 1월 10일
Hi, I'm new to the neural Network toolbox.
I have 100 sets of wavelet coefficients [1X1000] from gait data of 100 people. I want to classify them as good(1) or Bad(0).
how do I go about this?
  댓글 수: 1
kunle
kunle 2012년 1월 10일
Need to add this,
The classification as good or bad will ensure that when i pass a new set of coefficients, the network will be able to classify it as good or bad.

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2012년 1월 11일
100 data points can define, at most, a 99-dimensional subspace. Therefore, a very important step is to reduce the dimensionality of the 1000-dimensional inputs to a more practical value, I. A common, non-ideal method is to use the I dominant principal components as the orthogonal basis of a new I-dimensional input space.
The input and target matrices then have the dimensions
[ I N ] = size(p) % input, I <= 99, N = 100 [ O N ] = size(t) % output, O = 1
where the components of t are ones and zeros corresponding to the good and bad categories.
It is sufficient to use one hidden layer with H nodes to form a feedforward multilayer perceptron ( MLP) with an I-H-O node topology. With the choice of the function NEWFF, the rest of the problem is standard and is adequately covered in the documentation, demos and archive Newsgroup postings.
Hope this helps.
Greg

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 AI for Signals and Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by