Neural Network Design.

1 view (last 30 days)
Basoene Horsfall
Basoene Horsfall on 3 Dec 2011
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

Accepted Answer

Greg Heath
Greg Heath on 3 Dec 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

More Answers (0)

Categories

Find more on Deep Learning Toolbox in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!