I\'m trying to pass the output of one layer into two different layers and then join them back together. However, I\'m being stopped by this error which is telling me that my inp
I know, documentation can be confusing, but Concatenate actually only requires "axis" as parameter, while you passed the layers. The layers need to be passed as argument to the result of it as follow:
Line to modify:
x = keras.layers.concatenate([book_out, char_out])
How it should be:
x = keras.layers.Concatenate()([book_out, char_out])