nicodjimenez / lstm

Minimal, clean example of lstm neural network training in python, for learning purposes.
1.75k stars 651 forks source link

self.state.h = self.state.s * self.state.o #42

Closed niumeng07 closed 5 years ago

niumeng07 commented 5 years ago

Why self.state.h = self.state.s * self.state.o? But not h = tanh(s) * o?

niumeng07 commented 5 years ago

Sorry, I found the answer in other issure.