필터 지우기
필터 지우기

How to make Deep Ensemble Learning Model with Deep Learning toolbox

조회 수: 6 (최근 30일)
Emil
Emil 2020년 11월 28일
편집: Emil 2020년 12월 21일
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
Madhav Thakker 2020년 12월 21일
Can you share your progress?
Emil
Emil 2020년 12월 21일
편집: Emil 2020년 12월 21일
The issue was that I made the attached network I made in Deep Learning Toolbox directly referencing "Layers"
[net0,info0] = trainNetwork(inputTrain,targetTrain,lgraph_1.Layers,options);
This give errror shown below.
I should have ran it...
[net0,info0] = trainNetwork(inputTrain,targetTrain,lgraph_1,options);
This works without errors.
Kind Regards
Emil

댓글을 달려면 로그인하십시오.

답변 (1개)

Paola Jaramillo
Paola Jaramillo 2020년 12월 4일
Hi Emil,
Regarding the networks: RNNs, GRU and LSTMs are definitely supported.
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:
  댓글 수: 1
Emil
Emil 2020년 12월 10일
Thanks Paola
For example, the problem I have is building the layers with the deep learning toolbox.
When I try to train the network it get an error.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Sequence and Numeric Feature Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by