I am building a UNET model . I got stucked in one thing that if we have to pass two images as a input to UNET , we can complete it by concat them both just like below code
inputs = []
for _ in range(num_inputs):
inputs.append(Input((self.input_height, self.input_width, self.input_features)))
x = concatenate(inputs)
x = Conv2D(32, (3, 3), activation='relu', padding='same')(x)
But how can we get two images as output in single pass ?