I am using a pre-trained model which I want to add Elementwise
layer that products the output of two layers: one layer is output of convolution layer 1x1x256x256
and the other is also the output of convolution layer 1x32x256x256
. My question is: If we add elementwise layer for multiplying two layers and sending to the next layer, should we train from the scratch because the architecture is modified or still it is possible to use the pretrained
model?
Thanks