Graph disconnected: cannot obtain value for tensor Tensor(“conv2d_1_input:0”, shape=(?, 128, 128, 1), dtype=float32)
问题 I'm trying to implement an autoencoder which gets 3 different inputs and fuse this three image. I want to get the output of a layer in the encoder and concatenate it with a layer in the decoder but when I run it I get graph disconnected error. here is my code: def create_model(input_shape): input_1 = keras.layers.Input(input_shape) input_2 = keras.layers.Input(input_shape) input_3 = keras.layers.Input(input_shape) network = keras.models.Sequential([ keras.layers.Conv2D(32, (7, 7), activation