matlab-deep-learning/Image-domain-conversion-using-CycleGAN

The encoder integration order and layers.

ApplePomme opened this issue · 0 comments

The encoder integrates the layers as:

% integrate
lgraph = lgraph2; % residual blocks
lgraph = addLayers(lgraph,layers1); % encoder
lgraph = addLayers(lgraph,layers3); % decoder

It doesn't look like the figure:
generator
Placing the encoder first will not work.
Why's that?
How are the residual layers connected to the encoder and decoder? Thanks.