This repository was archived by the owner on Nov 17, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def svd(a):
111
111
(possibly non-zero) eigenvalues are given by ``s**2``.
112
112
113
113
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> `_.
115
115
116
116
If `a` has more than two dimensions, then broadcasting rules apply.
117
117
This means that SVD is working in "stacked" mode: it iterates over
@@ -122,7 +122,7 @@ def svd(a):
122
122
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
123
123
124
124
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
126
126
the following way(s):
127
127
- The sign of rows of `u` and `v` may differ.
128
128
- Does not support complex input.
Original file line number Diff line number Diff line change @@ -104,7 +104,7 @@ def svd(a):
104
104
(possibly non-zero) eigenvalues are given by ``s**2``.
105
105
106
106
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> `_.
108
108
109
109
If `a` has more than two dimensions, then broadcasting rules apply.
110
110
This means that SVD is working in "stacked" mode: it iterates over
@@ -115,7 +115,7 @@ def svd(a):
115
115
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
116
116
117
117
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
119
119
the following way(s):
120
120
- The sign of rows of `u` and `v` may differ.
121
121
- Does not support complex input.
Original file line number Diff line number Diff line change @@ -111,7 +111,7 @@ def svd(a):
111
111
(possibly non-zero) eigenvalues are given by ``s**2``.
112
112
113
113
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> `_.
115
115
116
116
If `a` has more than two dimensions, then broadcasting rules apply.
117
117
This means that SVD is working in "stacked" mode: it iterates over
@@ -122,7 +122,7 @@ def svd(a):
122
122
``ut @ (s[..., None] * v)``. (The ``@`` operator denotes batch matrix multiplication)
123
123
124
124
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
126
126
the following way(s):
127
127
- The sign of rows of `u` and `v` may differ.
128
128
- Does not support complex input.
You can’t perform that action at this time.
0 commit comments