Skip to content

Commit

Permalink
till access param
Browse files Browse the repository at this point in the history
  • Loading branch information
astonzhang committed Sep 12, 2018
1 parent d0d29d6 commit 66d4e4d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions TERMINOLOGY.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@

端到端,end-to-end

多层感知机,multilayer perceptron

二元分类,binary classification

二次采样,subsample
Expand Down
4 changes: 2 additions & 2 deletions chapter_deep-learning-computation/parameters.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 模型参数的访问、初始化和共享

在之前的小节里我们一直在使用默认的初始函数,`net.initialize()`,来初始化模型参数。我们也同时介绍过如何访问模型参数的简单方法。这一节我们将深入讲解模型参数的访问和初始化,以及如何在多个层之间共享同一份参数
在之前的章节中,我们一直使用默认方式来初始化模型的全部参数。我们也介绍了访问模型参数的简单方法。本节将深入讲解如何访问和初始化模型参数,以及如何在多个层之间共享同一份模型参数

我们首先定义同前的多层感知机、初始化权重和计算前向结果。与之前不同的是,在这里我们从MXNet中导入了`init`这个包,它包含了多种模型初始化方法。
我们先定义一个与上一节中相同的含单个隐藏层的多层感知机。我们依然使用默认方式初始化它的参数,并做一次前向计算。与之前不同的是,在这里我们从MXNet中导入了`init`,它包含了多种模型初始化方法。

```{.python .input n=1}
from mxnet import init, nd
Expand Down

0 comments on commit 66d4e4d

Please sign in to comment.