Update lstm_ops.cc (#8915)

fix o in doc
This commit is contained in:
Arron Cao 2017-04-03 16:21:15 -04:00 committed by Rohan Jain
parent 7ab36077ef
commit c06042dfee

View File

@ -78,7 +78,7 @@ ci = tanh(ci)
cs = ci .* i + cs_prev .* f
cs = clip(cs, cell_clip)
o = sigmoid(cs * wco + f)
o = sigmoid(cs * wco + o)
co = tanh(cs)
h = co .* o
```