Keras 中实施了哪个版本的 LSTM?

Which version of LSTMs are implemented in Keras?

Keras Python library implement? Is it the "basic" version outlined here, or if it is a variation such as Gers & Schmidhuber 确切的 LSTM(长短期记忆)神经网络模型是哪个?特别是,我需要知道确切的内部连接以及它们各自的激活函数。

我想知道这一点,因为我正在使用 Keras 训练模型,我想将其用于 Python 不可用的设备上的预测 - 因此我需要实现自己的 LSTM(并使用来自经过训练的 Keras 模型的权重)。

好的,看起来他们正在使用 Hochreiter 1997 - at least it says so in a comment in the code

如果您查看代码中的注释,您会发现遗忘门已实现,这是 Hochreiter 1997 年的工作中未提及的一个方面。根据 tensorflow documentation they use the version presented by Gers et al., 1999 忘记门在哪里出现。