hanbt / learn_dl

Deep learning algorithms source code for beginners
Apache License 2.0
1.19k stars 988 forks source link

Error in lstm.py #53

Open cuancuancuanhao opened 4 years ago

cuancuancuanhao commented 4 years ago

Line 264 and Line 266, bi_grad = self.delta_f_list[t] bo_grad = self.delta_f_list[t] should be corrected as: bi_grad = self.delta_i_list[t] bo_grad = self.delta_o_list[t]