フィルターのクリア

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 Center および File ExchangeAI 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