in the course lab its given that
next_hidden_state, _ , next_cell_state = post_activation_LSTM_cell(inputs=..., initial_state=[prev_hidden_state, prev_cell_state])
but documentation says
output, next_hidden_state, next_cell state = post_activation_LSTM_cell(inputs=..., initial_state=[prev_hidden_state, prev_cell_state])
even the shapes of the tensors seem to match what the tensorflow documentation says, I’m really confused.