The output of my model is (None, 2) and I need it to be (None, 2, 14). With the following model, what should I change to get the desired output shape?
model = Sequential()
model.add(Dense(32, activation='relu', input_shape=(211,)))
model.add(Dropout(0.25))
model.add(Dense(32, activation='relu'))
model.add(Dense(2,activation='softmax'))