Neural network classifier for classification of brain MRI Images
조회 수: 3 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
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
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!