Neural Network Design.
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Please I am designing a simple neural network with the following dimensions: 35 input vectors 10 output neurons 2 hidden layers with 10 neurons each please I need a valid code to execute this design using the feed-forward back propagation algorithm;especially how to set my targets. Also I need parameters to check the network performance especially error rate. I have already done my preprocessing and features extractions. Thank you very much and I look forward to constructive ideas
0 Kommentare
Akzeptierte Antwort
Greg Heath
am 3 Dez. 2011
Insufficient Information.
What versions of Matlab & NNToolbox?
What kind of physical problem are you trying to solve?
Regression or Classification?
What are your inputs and outputs?
Number of input/output training pairs: Ntrn = 35
Input vector dimensionality: I = ?
Output vector dimensionality: O = 10
One hidden layer is sufficent; For I-H-O node topology:
Number of training equations Neq = Ntrn*O
Number of unknown weights Nw = (I+1)*H+(H+1)*O
For robust solution want Neq >> Nw or
H << (Neq-O)/(I+O+1)
size(p) = [I Ntrn]
size(t) = [O Ntrn]
See NNTB documentation for examples.
For additional examples, search the Newsgroup using
heath newff close clear
Hope this helps.
Greg
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Deep Learning Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!