which is the best neural network for classification problem?

조회 수: 1 (최근 30일)
Dhandapani.S
Dhandapani.S 2015년 1월 25일
댓글: Greg Heath 2015년 1월 26일
for 2-class classification problem, which is the best neural network, what transfer function to use and the number of desired number of neurons?
  댓글 수: 1
Image Analyst
Image Analyst 2015년 1월 25일
I imagine that Greg would say "It depends, and you have not supplied enough information to even give an answer", so I would recommend you read this and fix your post.

댓글을 달려면 로그인하십시오.

채택된 답변

Greg Heath
Greg Heath 2015년 1월 25일
It depends.
However, in general, the default should be the standard classification version of the universal approximator. The MATLAB version is PATTERNNET.
help patternnet
doc patternnet
For practice data
help nndatasets
doc nndatasets
For nontrivial examples search the NEWSGROUP and ANSWERS using
greg patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg
  댓글 수: 2
Dhandapani.S
Dhandapani.S 2015년 1월 25일
i am working on handwritten signature verification modelling. i extract features of the signature andtryinh to use neural network for clasification. wht should be the target value. i have ketp 1 for genuine and 0 for forged signatures. what will be the best training trsting ratio?
Greg Heath
Greg Heath 2015년 1월 26일
Total = design + test
design = training + validation
nontraining = validation + test
The ratio is not important. The most important thing is to have enough training examples to design an accurate net that is robust with respect to noise, interference and transcription errors.
For an I-H-O node topology
Ntrneq = Ntrn*O % No. of training equations
Nw = (I+1)*H+(H+1)*O % No. of unknown weights
For robustness desire
Ntrneq >> Nw <==> H << -1+ceil( (Ntrneq-O) / (I+O+1) )
Otherwise consider validation stopping and/or regularization (msereg and/or trainbr).
Hopefully, there is enough left to have reasonably precise estimates on
a. nontraining test data
b. nondesign validation data
If not, you can resort to regularization instead of validation and/or multiple crossvalidation for precise test estimates.
Typically, my training goal is
Minimize H subject to mse(target-output) < 0.01*mean(var(target',1))
Then the net successfully models 99% of the target variance.
Hope this helps.
Greg

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by