8000 DOC Fix dropdown content indentation (#30116) · commit-0/scikit-learn@4c78d7c · GitHub
[go: up one dir, main page]

Skip to content

Commit 4c78d7c

Browse files
authored
DOC Fix dropdown content indentation (scikit-learn#30116)
1 parent 39e1cc1 commit 4c78d7c

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

doc/modules/manifold.rst

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -293,24 +293,24 @@ It requires ``n_neighbors > n_components * (n_components + 3) / 2``.
293293

294294
.. dropdown:: Complexity
295295

296-
The HLLE algorithm comprises three stages:
296+
The HLLE algorithm comprises three stages:
297297

298-
1. **Nearest Neighbors Search**. Same as standard LLE
298+
1. **Nearest Neighbors Search**. Same as standard LLE
299299

300-
2. **Weight Matrix Construction**. Approximately
301-
:math:`O[D N k^3] + O[N d^6]`. The first term reflects a similar
302-
cost to that of standard LLE. The second term comes from a QR
303-
decomposition of the local hessian estimator.
300+
2. **Weight Matrix Construction**. Approximately
301+
:math:`O[D N k^3] + O[N d^6]`. The first term reflects a similar
302+
cost to that of standard LLE. The second term comes from a QR
303+
decomposition of the local hessian estimator.
304304

305-
3. **Partial Eigenvalue Decomposition**. Same as standard LLE.
305+
3. **Partial Eigenvalue Decomposition**. Same as standard LLE.
306306

307-
The overall complexity of standard HLLE is
308-
:math:`O[D \log(k) N \log(N)] + O[D N k^3] + O[N d^6] + O[d N^2]`.
307+
The overall complexity of standard HLLE is
308+
:math:`O[D \log(k) N \log(N)] + O[D N k^3] + O[N d^6] + O[d N^2]`.
309309

310-
* :math:`N` : number of training data points
311-
* :math:`D` : input dimension
312-
* :math:`k` : number of nearest neighbors
313-
* :math:`d` : output dimension
310+
* :math:`N` : number of training data points
311+
* :math:`D` : input dimension
312+
* :math:`k` : number of nearest neighbors
313+
* :math:`d` : output dimension
314314

315315
.. rubric:: References
316316

sklearn/manifold/tests/test_spectral_embedding.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
def _assert_equal_with_sign_flipping(A, B, tol=0.0):
5656
"""Check array A and B are equal with possible sign flipping on
57-
each columns"""
57+
each column"""
5858
tol_squared = tol**2
5959
for A_col, B_col in zip(A.T, B.T):
6060
assert (

0 commit comments

Comments
 (0)
0