Hello, I am going though your implementation and I was wondering why are you getting the same variable as on previous line.
|
prev_c = self.state['h'][t - 1] if t > 0 else first_prev_c |
Shouldn't there be
prev_c = self.state['c'][t - 1] if t > 0 else first_prev_c
Thanks for your response.
Hello, I am going though your implementation and I was wondering why are you getting the same variable as on previous line.
LSTM-RNN/LSTM_RNN.py
Line 53 in a4e454f
Shouldn't there be
prev_c = self.state['c'][t - 1] if t > 0 else first_prev_cThanks for your response.