Skip to content

Commit 543f1b4

Browse files
committed
fix typo(#65)
1 parent a86f344 commit 543f1b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/chapter06_RNN/6.5_rnn-pytorch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ rnn_layer = nn.RNN(input_size=vocab_size, hidden_size=num_hiddens)
3636
<div align=center>循环神经网络(以LSTM为例)的输出</div>
3737

3838

39-
来看看我们的例子,输出形状为(时间步数, 批量大小, 输入个数),隐藏状态h的形状为(层数, 批量大小, 隐藏单元个数)。
39+
来看看我们的例子,输出形状为(时间步数, 批量大小, 隐藏单元个数),隐藏状态h的形状为(层数, 批量大小, 隐藏单元个数)。
4040

4141
``` python
4242
num_steps = 35

0 commit comments

Comments
 (0)