Why do we need a, _, c in LSTM cell

Why do we need _.
Why not just a,c = LSTM_cell()

This confuses me. I hope someone can give me a nice example to understand this.
Regards

Hey @statsconchris, as conveyed to you here, please post in the appropriate categories to get responses from our mentors.

Iā€™m moving this post to DLS Course 5.

1 Like

The function returns three parameters, but we need the first and third ones. So we need a placeholder for the second parameter.

It could have been any legal variable name. They decided to use ā€˜_ā€™.