Working on building a multi-input neural network based on tutorial here. When trying to combine input layers with the following code:
x1 = # layer 1
x2 = # layer 2
combined = tf.keras.layers.concatenate([x1.output,x2.output])
I get an error saying that the layers do not have an attribute output. Any ideas what I should try to merge these outputs to connect to the rest of my network?