Keras 中的默认激活函数

Default activation function in Keras

有人知道 Keras 循环层中使用的默认激活函数吗? https://keras.io/layers/recurrent/

它说默认激活函数是线性的。但是默认的循环激活函数呢?没有提到这一点。任何帮助将不胜感激。 提前致谢

Keras Recurrent 是循环层的抽象 class。在 Keras 2.0 中,所有实现的 RNNsLSTMGRUSimpleRNN)的所有默认激活都是线性的。在以前的版本中,您有:

  • linear 对于 SimpleRNN,
  • tanh 对于 LSTMGRU.

https://github.com/keras-team/keras/blob/master/keras/layers/recurrent.py#L2081

这里提到了 tanh 版本 2.3.0 :-)