フィルターのクリア

Neural network classifier for classification of brain MRI Images

2 ビュー (過去 30 日間)
purti choudhary
purti choudhary 2015 年 5 月 20 日
回答済み: Greg Heath 2015 年 5 月 20 日
I have a data set of total 35 images, 20 used for training and rest 15 for testing. Two class labels normal and abnormal. Total ten texture features namely energy, entropy, contrast, cluster shade, covariance, inertia, cluster prominance, cluster shade, idm, angular second moment are extracted. How to use neural network for this classification purpose.

採用された回答

Greg Heath
Greg Heath 2015 年 5 月 20 日
It doesn't sound like you have a sufficient amount of data for precision estimation.
Therefore I would recommend many repetitions of crossvalidation using patternnet. Combining validation stopping and regularization might be worthwhile.
[ I N ] = size(input) % [ 10 35 ]
[ O N ] = size(target) % [ 1 35 ]
With no data division, the number of unknown weights will exceed the number of training equations when the number of hidden nodes exceeds the upper bound
Hub = -1 + ceil( (N*O-O)/ (I+O+1) ) = 2
Therefore you may have to experiment more than you would like to with input variable reduction and regularization.
Hope this helps.
Greg

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangePattern Recognition and Classification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by