How to create Neural Network classifier for pattern Recognition ?

I want to create a Neural network with 50 thousand nodes for EEG recognition . Can anybody help me to do this?

 채택된 답변

Greg Heath
Greg Heath 2013년 10월 2일
How many classes/categories? c = ?
What is the dimensionality of your input vectors? I= ?
How many input/target examples do you have? N = ?
Choose the output target vectors to be O = c dimensional unit column vectors with a 1 in the row corresponding to the class index.
[ I N ] = size(input) % = ?
[ O N ] = size(target) % = ?
Using defaults,
Ntrn = N - 2*round(0.15*N) % No. of training examples
Ntrneq = Ntrn*O % No. of training equations
H = 10 % No. of hidden layer nodes
Nw = (I+1)*H+(H+1)*O % No of unknown weights
Is Ntrneq > Nw ?
Is Ntrneq >> Nw ?
Use the help and doc commands and try one or more of the following practice examples
simpleclass_dataset - Simple pattern recognition dataset.
cancer_dataset - Breast cancer dataset.
crab_dataset - Crab gender dataset.
glass_dataset - Glass chemical dataset.
iris_dataset - Iris flower dataset.
ovarian_dataset - Ovarian cancer dataset.
thyroid_dataset - Thyroid function dataset.
wine_dataset - Italian wines dataset.
Search for more info and examples in the NEWSGROUP and ANSWERS using
greg patternnet
Hope this helps.
Thank you for formally accepting my answer
Greg

댓글 수: 1

dear sir i need your help i need some explaining of using nn for character recognition i have 20 images to read and i must recognize 20 character of them could please help me

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

추가 답변 (1개)

Shashank Prasanna
Shashank Prasanna 2013년 9월 30일

1 개 추천

Here is a walk through example of how to do pattern classification using the Neural Network Toolbox:
Feel free to go through the other examples in the documentation as well.

질문:

2013년 9월 30일

댓글:

2017년 5월 6일

Community Treasure Hunt

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

Start Hunting!

Translated by