Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Merged
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
6 changes: 3 additions & 3 deletions python/mxnet/gluon/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,9 +740,9 @@ def get(self, name, **kwargs):
return param

def get_constant(self, name, value=None):
"""Retrieves a :py:class:`Constant` with name ``self.prefix+name``. If not found,
"""Retrieves a :py:class:`.Constant` with name ``self.prefix+name``. If not found,
:py:func:`get` will first try to retrieve it from "shared" dict. If still not
found, :py:func:`get` will create a new :py:class:`Constant` with key-word
found, :py:func:`get` will create a new :py:class:`.Constant` with key-word
arguments and insert it to self.

Parameters
Expand All @@ -756,7 +756,7 @@ def get_constant(self, name, value=None):
Returns
-------
Constant
The created or retrieved :py:class:`Constant`.
The created or retrieved :py:class:`.Constant`.
"""
name = self.prefix + name
param = self._get_impl(name)
Expand Down