Azzera filtri
Azzera filtri

Neural Network Classification

3 visualizzazioni (ultimi 30 giorni)
kunle
kunle il 10 Gen 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 Commento
kunle
kunle il 10 Gen 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.

Accedi per commentare.

Risposta accettata

Greg Heath
Greg Heath il 11 Gen 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

Più risposte (0)

Categorie

Scopri di più su AI for Signals and Images in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by