S-LSTM Unit Activation Function

From GM-RKB
Jump to navigation Jump to search

A S-LSTM Unit Activation Function is a Long Short-Term Memory Unit-based Activation Function applied to Binary Trees.



References

2018

  • [math]\displaystyle{ a_i }[/math] : sources of cell input
  • [math]\displaystyle{ i_i }[/math] : sources of input gate
  • [math]\displaystyle{ f_i }[/math] : sources of forget gate
  • [math]\displaystyle{ o_i }[/math] : sources of output gate
It computes the updated cell state c and the outgoing signal h as:

[math]\displaystyle{ c=\tanh(a_1+a_2)\sigma(i_1+i_2)+c_{prev1}\sigma(f_1)+c_{prev2}\sigma(f_2), }[/math]

[math]\displaystyle{ h=tanh(c)\sigma(o_1+o_2) }[/math], where [math]\displaystyle{ \sigma }[/math] is the elementwise sigmoid function. The function returns c and h as a tuple (...)

2015