Hi, thanks a lot for the input. My model gives the following output:
[['InputLayer', [(None, 30, 37)], 0], ['InputLayer', [(None, 64)], 0], ['Bidirectional', (None, 30, 64), 17920], ['RepeatVector', (None, 30, 64), 0, 30], ['Concatenate', (None, 30, 128), 0], ['Dense', (None, 30, 1), 129, 'relu'], ['Activation', (None, 30, 1), 0], ['Dot', (None, 1, 64), 0], ['InputLayer', [(None, 64)], 0], ['LSTM', [(None, 64), (None, 64), (None, 64)], 33024, [(None, 1, 64), (None, 64), (None, 64)], 'tanh'], ['Dense', (None, 11), 715, 'softmax']]
So that means that one dense layer in the middle is missing and the one I have is wrong. Unfortunately, I can’t figure out how to adapt my code to get to the right output.
It looks like it’s using densor2 instead of densor1. Is it by any chance possible that my code from the previous exercise is faulty although it passed all the tests? I’m really a bit lost.