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 think you need to add axis=1 to concatenate, Try:
x = keras.layers.concatenate([book_out, char_out], axis=1)