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 ....

2 次查看(过去 30 天)
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 ....

采纳的回答

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

更多回答(1 个)

Greg Heath
Greg Heath 2013-1-13
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

标签

Community Treasure Hunt

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

Start Hunting!

Translated by