!16176 fix error link in nn/layer/lstm.py for master

From: @lvmingfu
Reviewed-by: @gemini524,@wuxuejian,@liangchenghui
Signed-off-by: @wuxuejian
This commit is contained in:
mindspore-ci-bot 2021-05-11 15:14:58 +08:00 committed by Gitee
commit c2b00a64f8
1 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ class LSTM(Cell):
Details can be found in paper `LONG SHORT-TERM MEMORY
<https://www.bioinf.jku.at/publications/older/2604.pdf>`_ and
`Long Short-Term Memory Recurrent Neural Network Architectures for Large Scale Acoustic Modeling
<https://static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/43905.pdf>`_.
<https://static.googleusercontent.com/media/research.google.com/zh-CN/pubs/archive/43905.pdf>`_.
Args:
input_size (int): Number of features of input.
@ -312,7 +312,7 @@ class LSTMCell(Cell):
Details can be found in paper `LONG SHORT-TERM MEMORY
<https://www.bioinf.jku.at/publications/older/2604.pdf>`_ and
`Long Short-Term Memory Recurrent Neural Network Architectures for Large Scale Acoustic Modeling
<https://static.googleusercontent.com/media/research.google.com/zh-CN//pubs/archive/43905.pdf>`_.
<https://static.googleusercontent.com/media/research.google.com/zh-CN/pubs/archive/43905.pdf>`_.
LSTMCell is a single-layer RNN, you can achieve multi-layer RNN by stacking LSTMCell.