Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/faq/finetune.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ with these pretrained weights when training on our new task. This process is
commonly called _fine-tuning_. There are a number of variations of fine-tuning.
Sometimes, the initial neural network is used only as a _feature extractor_.
That means that we freeze every layer prior to the output layer and simply learn
a new output layer. In [another document](https://github.com/dmlc/mxnet-notebooks/blob/master/python/faq/predict.ipynb), we explained how to
a new output layer. In [another document](https://github.com/dmlc/mxnet-notebooks/blob/master/python/how_to/predict.ipynb), we explained how to
do this kind of feature extraction. Another approach is to update all of
the network's weights for the new task, and that's the approach we demonstrate in
this document.
Expand Down
2 changes: 1 addition & 1 deletion docs/faq/multi_devices.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,4 +210,4 @@ export PS_VERBOSE=1; python ../../tools/launch.py ...
### More

- See more launch options by `python ../../tools/launch.py -h`
- See more options of [ps-lite](http://ps-lite.readthedocs.org/en/latest/faq.html)
- See more options of [ps-lite](https://ps-lite.readthedocs.io/en/latest)
4 changes: 2 additions & 2 deletions docs/tutorials/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ The Gluon and Module tutorials are in Python, but you can also find a variety of

- [Imperative tensor operations on CPU/GPU](http://mxnet.incubator.apache.org/tutorials/basic/ndarray.html)

- [NDArray Indexing](http://mxnet.incubator.apache.org/tutorials/basic/ndarray_indexing.html)
- [NDArray Indexing](../tutorials/basic/ndarray_indexing.html)

- [Symbol API](http://mxnet.incubator.apache.org/tutorials/basic/symbol.html)

Expand Down Expand Up @@ -174,7 +174,7 @@ The Gluon and Module tutorials are in Python, but you can also find a variety of

<div class="applications">

- [Connectionist Temporal Classification](http://mxnet.incubator.apache.org/tutorials/speech_recognition/ctc.html)
- [Connectionist Temporal Classification](../tutorials/speech_recognition/ctc.html)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we should use relative links to avoid version issues and keep it as a general guideline for all other links?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes - this is a good practice. I will scan others and carefully do this in a different PR.


- [Distributed key-value store](http://mxnet.incubator.apache.org/tutorials/python/kvstore.html)

Expand Down
4 changes: 2 additions & 2 deletions python/mxnet/gluon/trainer.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# under the License.

# coding: utf-8
# pylint: disable=
# pylint: disable=line-too-long
"""Parameter optimizer."""
__all__ = ['Trainer']

Expand All @@ -34,7 +34,7 @@ class Trainer(object):
The set of parameters to optimize.
optimizer : str or Optimizer
The optimizer to use. See
`help <http://mxnet.io/api/python/optimization.html#the-mxnet-optimizer-package>`_
`help <http://mxnet.io/api/python/optimization/optimization.html#the-mxnet-optimizer-package>`_
on Optimizer for a list of available optimizers.
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fix lint. Line is too long

optimizer_params : dict
Key-word arguments to be passed to optimizer constructor. For example,
Expand Down