How to make Deep Ensemble Learning Model with Deep Learning toolbox
이전 댓글 표시
Can someone show me how to build an example enseble deep network like is shown in figure 2 of attached zip?
See attached or via link https://www.mdpi.com/2076-3417/10/4/1504/pdf

https://www.mdpi.com/2076-3417/10/4/1504/pdf
댓글 수: 2
Madhav Thakker
2020년 12월 21일
Can you share your progress?
답변 (1개)
Paola Jaramillo
2020년 12월 4일
0 개 추천
Hi Emil,
Regarding the networks: RNNs, GRU and LSTMs are definitely supported.
- Custom RNNs are more tricky to implement, you could use custom layers and custom training loops methods:
- https://nl.mathworks.com/help/deeplearning/deep-learning-custom-layers.html
- https://nl.mathworks.com/help/deeplearning/ref/dlarray.html
Regarding the ensemble method: the easiest way to ensemble deep learning models is to train different networks individually and then combine the predictions of all networks using one of the post-hoc ensemble approaches (e.g. average predictions or majority voting). To give you some ideas:
- https://blogs.mathworks.com/deep-learning/2019/06/03/ensemble-learning/
- https://nl.mathworks.com/help/deeplearning/ug/classify-videos-using-deep-learning.html
카테고리
도움말 센터 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


