Borrar filtros
Borrar filtros

Neural Network Classification

3 visualizaciones (últimos 30 días)
kunle
kunle el 10 de En. de 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 comentario
kunle
kunle el 10 de En. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Greg Heath
Greg Heath el 11 de En. de 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

Más respuestas (0)

Categorías

Más información sobre AI for Signals and Images en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by