Please help. I have worked on this error most of the day and I have not been able to make any progress. I am fairly certain it involves the passing of context vector to the LSTM. However, I am out of options to try.
thank you,
James
TypeError Traceback (most recent call last)
in
33
34
—> 35 modelf_test(modelf)
in modelf_test(target)
10
11
—> 12 model = target(Tx, Ty, n_a, n_s, len_human_vocab, len_machine_vocab)
13
14 print(summary(model))
in modelf(Tx, Ty, n_a, n_s, human_vocab_size, machine_vocab_size)
47 # Don’t forget to pass: initial_state = [hidden state, cell state]
48 # Remember: s = hidden state, c = cell state
—> 49 _, s, c = post_activation_LSTM_cell(…)
50
51 # Step 2.C: Apply Dense layer to the hidden state output of the post-attention LSTM (≈ 1 line)
TypeError: call() missing 1 required positional argument: ‘inputs’