I want to train multiple feedforward neural network simultaneously with various combination of inputs and after that I want to add their individual output....Is it poosible in matlab...then please hel me ....

9 views (last 30 days)
I want to train multiple feedforward neural network simultaneously with various combination of inputs and after that I want to add their individual output....Is it poosible in matlab...then please hel me ....

Accepted Answer

José-Luis
José-Luis on 12 Jan 2013
Yes, it is possible.

More Answers (1)

Greg Heath
Greg Heath on 13 Jan 2013
A neural net ensemble is created by combining the outputs of multiple nets. Although you can combine posterior probability estimates for classification/patternnrecognition, ensembles are typically used for regression/curvefitting.
A neural net committee is created by combining the {0,1} votes of multiple classifiers.
SIMULTANEOUSLY training multiple nets can be accomplished by deleting connections in a single net so that there are no mixing of signals among hidden and output layers.
This requires both intializing hidden-to-hidden and hidden-to-output weights to zero and setting their learning rates to zero. Zeroing input-to-hidden weights is optional.
The simplest example I can think of is a 3-output classifier for the 3-class/4-dimensional iris_dataset (load iris_dataset; whos ).
The hidden nodes are separated into 3 categories. The hidden nodes in one category are only connected to the output node for one class and are trained to separate that class from the other two.
This topoloogy is only interesting if the combination of inputs connected to each category is different.
Finally, the outputs of those 3 independent classifiers can be combined into an ensemble or committee.
Hope this helps.
Thank you for formally acceptingmy answer.
Greg

Categories

Find more on Sequence and Numeric Feature Data Workflows in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!