Filter löschen
Filter löschen

Neural Network Classification

3 Ansichten (letzte 30 Tage)
kunle
kunle am 10 Jan. 2012
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 Kommentar
kunle
kunle am 10 Jan. 2012
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.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Greg Heath
Greg Heath am 11 Jan. 2012
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

Weitere Antworten (0)

Kategorien

Mehr zu AI for Signals and Images finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by