CNN error using deep network designer

5 views (last 30 days)
Teo
Teo on 21 Sep 2021
Edited: Teo on 2 Oct 2021
Hi,
i trying to combine certain part of the two CNN into one model using addition layer. However, there seem to be error while analyzing the combined models using deep network designer.
Thank you.

Accepted Answer

Katja Mogalle
Katja Mogalle on 22 Sep 2021
Hi Teo,
As you already noticed, the shufflenet branch results in 544 channels and the resnet18 branch results in 512 channels. You could map one of those branches (e.g. shufflenet branch) to the number of filters of the other branch (e.g. resnet18) by using a convolution2dLayer with filter size [1 1] and 512 filters. Then you should be able to do the addition.
I don't know the details of what you're doing and what the two branches are supposed to do, but I wonder if a concatenationLayer would be the better choice here to combine the two branches.
I hope this helps.
Katja
  3 Comments
Teo
Teo on 23 Sep 2021
I really appreciate your suggestion and clarification on the confusion. Thank you very much.

Sign in to comment.

More Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!