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

Commit a204bcd

Browse files
author
Fan
committed
Fix hyper link in doc
1 parent 6aeb8cd commit a204bcd

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

python/mxnet/ndarray/numpy/linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def svd(a):
111111
(possibly non-zero) eigenvalues are given by ``s**2``.
112112
113113
The sign of rows of `u` and `v` are determined as described in
114-
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
114+
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
115115
116116
If `a` has more than two dimensions, then broadcasting rules apply.
117117
This means that SVD is working in "stacked" mode: it iterates over
@@ -122,7 +122,7 @@ def svd(a):
122122
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
123123
124124
This function differs from the original `numpy.linalg.svd
125-
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
125+
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
126126
the following way(s):
127127
- The sign of rows of `u` and `v` may differ.
128128
- Does not support complex input.

python/mxnet/numpy/linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def svd(a):
104104
(possibly non-zero) eigenvalues are given by ``s**2``.
105105
106106
The sign of rows of `u` and `v` are determined as described in
107-
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
107+
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
108108
109109
If `a` has more than two dimensions, then broadcasting rules apply.
110110
This means that SVD is working in "stacked" mode: it iterates over
@@ -115,7 +115,7 @@ def svd(a):
115115
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
116116
117117
This function differs from the original `numpy.linalg.svd
118-
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
118+
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
119119
the following way(s):
120120
- The sign of rows of `u` and `v` may differ.
121121
- Does not support complex input.

python/mxnet/symbol/numpy/linalg.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ def svd(a):
111111
(possibly non-zero) eigenvalues are given by ``s**2``.
112112
113113
The sign of rows of `u` and `v` are determined as described in
114-
`Auto-Differentiating Linear Algebra https://arxiv.org/pdf/1710.08717.pdf`_.
114+
`Auto-Differentiating Linear Algebra <https://arxiv.org/pdf/1710.08717.pdf>`_.
115115
116116
If `a` has more than two dimensions, then broadcasting rules apply.
117117
This means that SVD is working in "stacked" mode: it iterates over
@@ -122,7 +122,7 @@ def svd(a):
122122
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
123123
124124
This function differs from the original `numpy.linalg.svd
125-
https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html`_ in
125+
<https://docs.scipy.org/doc/numpy/reference/generated/numpy.linalg.svd.html>`_ in
126126
the following way(s):
127127
- The sign of rows of `u` and `v` may differ.
128128
- Does not support complex input.

0 commit comments

Comments
 (0)