I confuse with Lstm in Keras. I try to map keras code to LSTM equation. I found this weights parameter in Keras code. LSTM Keras code
I think that It's a weights from current weight of cell and recurrent weight of cell.
In the call function in LSTM Keras code I found the statement for calculate i,f,c and o term . calculate I,F,C,O term Lstm in keras
In i term of LSTM equation have W_ci * C_t-1 but I can't find in Keras code.
Could please anyone explain the LSTM equation and Keras code.
This is the LSTM equation please follow this link LSTM equation