We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3638409 commit 5ca4953Copy full SHA for 5ca4953
chapter_recurrent-neural-networks/rnn-scratch.md
@@ -3,6 +3,10 @@
3
在本节中,我们将从零开始实现一个基于字符级循环神经网络的语言模型,并在周杰伦专辑歌词数据集上训练一个模型来进行歌词创作。首先,我们读取周杰伦专辑歌词数据集。
4
5
```{.python .input n=1}
6
+!pip uninstall -y ..
7
+!pip uninstall -y d2lzh
8
+!pip install d2lzh==1.0.0
9
+
10
import d2lzh as d2l
11
import math
12
from mxnet import autograd, nd
0 commit comments