Building Acoustic Models with Recurrent Neural Networks
Was this section helpful?
Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - Provides a foundational treatment of recurrent neural networks, including their architecture, training, and the vanishing gradient problem.
Long Short-Term Memory, Sepp Hochreiter and Jürgen Schmidhuber, 1997Neural Computation, Vol. 9 (MIT Press)DOI: 10.1162/neco.1997.9.8.1735 - Introduced the Long Short-Term Memory (LSTM) network, a significant advance for learning long-range dependencies in sequential data, addressing the vanishing gradient problem.
RNN - PyTorch 2.3 documentation, PyTorch Developers, 2024 (PyTorch) - Official documentation for PyTorch's torch.nn.RNN module, detailing its parameters and usage for building recurrent layers.