I am looking at combining two Convolutional Neural Networks into one through element-wise summation of activation functions. Both these networks have different inputs, but are similar in their architecture.
I have seen from certain papers and github pages that this has been, successfully, implemented in Python. However, I was wondering if this would also be possible to implement in MATLAB?
One example of what I want to reproduce is the FuseNet architecture by Hazirbas et al. https://github.com/zanilzanzan/FuseNet_PyTorch:
Is it possible to reproduce this in MATLAB, and if so, how do I start?