Neural Network Design.
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Greg Heath
il 3 Dic 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 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Deep Learning Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!