Skip to content

Commit

Permalink
Update get_start_model.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
zsdonghao committed Jun 25, 2019
1 parent 39a69e4 commit ae2faa5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user/get_start_model.rst
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Save model architecture and weights(optional)
Customizing layer
==================

The fully-connected layer is `a = f(x*W+b)`, the most simple way is as follow, which can only support static model.
The fully-connected layer is `a = f(x*W+b)`, the most simple implementation is as follow, which can only support static model.

.. code-block:: python
Expand Down Expand Up @@ -242,7 +242,7 @@ The full implementation is as follow, which supports both static and dynamic mod
act=None,
W_init=tl.initializers.truncated_normal(stddev=0.1),
b_init=tl.initializers.constant(value=0.0),
in_channels=None,
in_channels=None, # the number of units/channels of the previous layer
name=None,
):
# we feed activation function to the base layer, `None` denotes identity function
Expand Down

0 comments on commit ae2faa5

Please sign in to comment.