Solved – Ensemble neural network

ensemble learningneural networks

I had run artificial neural network on Matlab. Although i used the same design structure of ANN and the same data set, the result always different. Some suggested using ensemble neural network. From my reading ensemble is combine ANN with different design structure. Do this applicable in my problem. Other than that, why is ANN produce different result every time i run it?

Best Answer

Why ANN produces different results: this is probably the training procedure involves "randomness", for example,

  1. Your training may use random parameter initialisation.
  2. Your training may use random dropout as regularisation.
  3. Your training may use SGD and shuffle the data order every epoch.
  4. ...

And ANN is a not a convex function, so any of these "randomness" may lead to different local optimum.

And ensemble method is a very general method to reduce the variance of predictor then improve the performance. It is not necessarily specific for ANN. And there are many ways to train an ensemble of ANN (like using different datasets, using different initial parameters, using different structure/dropout). This is really an "art" which means you need to try a lot and pick the best way for your specific dataset.

Related Question