Skip to content

Commit 1419016

Browse files
authored
DOC remove the term experimental (scikit-learn-contrib#268)
1 parent ac9fc82 commit 1419016

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

imblearn/under_sampling/cluster_centroids.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ class ClusterCentroids(BaseMulticlassSampler):
1414
"""Perform under-sampling by generating centroids based on
1515
clustering methods.
1616
17-
Experimental method that under samples the majority class by replacing a
18-
cluster of majority samples by the cluster centroid of a KMeans algorithm.
19-
This algorithm keeps N majority samples by fitting the KMeans algorithm
20-
with N cluster to the majority class and using the coordinates of the N
21-
cluster centroids as the new majority samples.
17+
Method that under samples the majority class by replacing a
18+
cluster of majority samples by the cluster centroid of a KMeans
19+
algorithm. This algorithm keeps N majority samples by fitting the
20+
KMeans algorithm with N cluster to the majority class and using
21+
the coordinates of the N cluster centroids as the new majority
22+
samples.
2223
2324
Parameters
2425
----------

0 commit comments

Comments
 (0)