Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - 讨论了循环神经网络,包括LSTM、GRU和双向RNN,为它们在序列建模和文本分类中的应用提供了重要信息。
Keras API: tf.keras.layers.LSTM, TensorFlow Authors, 2024 (TensorFlow) - Keras LSTM层的官方文档,详细说明了return_sequences、mask_zero等参数,以及它如何与Keras中文本分类架构中的其他层集成。这在概念上适用于GRU和双向封装器。