Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1599bee

Browse files
KUNAL.MANDALYAKUNAL.MANDALYA
authored andcommitted
pydoc validation
1 parent 2bc3180 commit 1599bee

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

sklearn/base.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,6 @@ def get_indices(self, i):
758758
Indices of rows in the dataset that belong to the bicluster.
759759
col_ind : ndarray, dtype=np.intp
760760
Indices of columns in the dataset that belong to the bicluster.
761-
762761
"""
763762
rows = self.rows_[i]
764763
columns = self.columns_[i]

sklearn/cluster/_bicluster.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -290,18 +290,18 @@ class SpectralCoclustering(BaseSpectral):
290290
291291
.. versionadded:: 1.0
292292
293+
See Also
294+
--------
295+
sklearn.cluster.SpectralClustering : Apply clustering to a projection of the
296+
normalized Laplacian.
297+
293298
References
294299
----------
295300
296301
* Dhillon, Inderjit S, 2001. `Co-clustering documents and words using
297302
bipartite spectral graph partitioning
298303
<http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.140.3011>`__.
299304
300-
See Also
301-
--------
302-
sklearn.cluster.SpectralClustering : Apply clustering to a projection of the
303-
normalized Laplacian.
304-
305305
Examples
306306
--------
307307
>>> from sklearn.cluster import SpectralCoclustering
@@ -448,17 +448,17 @@ class SpectralBiclustering(BaseSpectral):
448448
449449
.. versionadded:: 1.0
450450
451+
See Also
452+
--------
453+
sklearn.cluster.SpectralClustering : Apply clustering to a projection of the
454+
normalized Laplacian.
455+
451456
References
452457
----------
453458
* Kluger, Yuval, et. al., 2003. `Spectral biclustering of microarray
454459
data: coclustering genes and conditions
455460
<http://citeseerx.ist.psu.edu/viewdoc/summary?doi=10.1.1.135.1608>`__.
456461
457-
See Also
458-
--------
459-
sklearn.cluster.SpectralClustering : Apply clustering to a projection of the
460-
normalized Laplacian.
461-
462462
Examples
463463
--------
464464
>>> from sklearn.cluster import SpectralBiclustering

0 commit comments

Comments
 (0)