How to design a shared weight, multi input/output Auto-Encoder network?
问题 I have two different types of images (camera image and it's corresponding sketch). The goal of the network is to find the similarity between both images. The network consists of a single encoder and a single decoder. The motivation behind the single encoder-decoder is to share the weights between them. input_img = Input(shape=(img_width,img_height, channels)) def encoder(input_img): # Photo-Encoder Code pe = Conv2D(96, kernel_size=11, strides=(4,4), padding = 'SAME')(left_input) # (?, 64, 64,