How to concatenate two layers in keras?
You’re getting the error because result defined as Sequential() is just a container for the model and you have not defined an input for it. Given what you’re trying to build set result to take the third input x3. first = Sequential() first.add(Dense(1, input_shape=(2,), activation=’sigmoid’)) second = Sequential() second.add(Dense(1, input_shape=(1,), activation=’sigmoid’)) third = Sequential() # … Read more