Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix hyper link in doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Fan committed Oct 19, 2019
1 parent 6aeb8cd commit 0d5dfd4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions python/mxnet/ndarray/numpy/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def svd(a):
(possibly non-zero) eigenvalues are given by ``s**2``.
The sign of rows of `u` and `v` are determined as described in
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
If `a` has more than two dimensions, then broadcasting rules apply.
This means that SVD is working in "stacked" mode: it iterates over
Expand All @@ -122,7 +122,7 @@ def svd(a):
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
This function differs from the original `numpy.linalg.svd
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
the following way(s):
- The sign of rows of `u` and `v` may differ.
- Does not support complex input.
Expand Down
4 changes: 2 additions & 2 deletions python/mxnet/numpy/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def svd(a):
(possibly non-zero) eigenvalues are given by ``s**2``.
The sign of rows of `u` and `v` are determined as described in
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
If `a` has more than two dimensions, then broadcasting rules apply.
This means that SVD is working in "stacked" mode: it iterates over
Expand All @@ -115,7 +115,7 @@ def svd(a):
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
This function differs from the original `numpy.linalg.svd
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
the following way(s):
- The sign of rows of `u` and `v` may differ.
- Does not support complex input.
Expand Down
4 changes: 2 additions & 2 deletions python/mxnet/symbol/numpy/linalg.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ def svd(a):
(possibly non-zero) eigenvalues are given by ``s**2``.
The sign of rows of `u` and `v` are determined as described in
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
If `a` has more than two dimensions, then broadcasting rules apply.
This means that SVD is working in "stacked" mode: it iterates over
Expand All @@ -122,7 +122,7 @@ def svd(a):
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
This function differs from the original `numpy.linalg.svd
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
the following way(s):
- The sign of rows of `u` and `v` may differ.
- Does not support complex input.
Expand Down

0 comments on commit 0d5dfd4

Please sign in to comment.