mcikmeans
MCIKMeans
Implementation of K-Means with Minimization of Cluster Impurity (MCI-Kmeans), as described in [1].
This algorithm implements a semi-supervised version of K-Means, that aims to minimize the intra-cluster dispersion while also minimizing the impurity of each cluster.
[1] Masud, Mohammad M., et al. "A practical approach to classify evolving data streams: Training with limited amount of labeled data." 2008 Eighth IEEE International Conference on Data Mining. IEEE, 2008.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
n_clusters
|
int
|
Number of clusters to generate |
8
|
max_iter
|
int
|
Maximum number of iterations of the M-Step |
300
|
conditional_mode_max_iter
|
int
|
Maximum number of iterations of the E-Step |
300
|
random_state
|
int
|
Seed for the random number generation. Makes the algorithm deterministic if a number is provided. |
None
|
Attributes:
| Name | Type | Description |
|---|---|---|
clusters |
dict
|
Dictionary containing each cluster with their label as key |
cluster_centers_ |
ndarray
|
Array containing the coordinates of the cluster centers |
labels_ |
ndarray
|
Labels of each point |
Source code in streamndr/utils/mcikmeans.py
9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | |
fit(X, y)
Compute MCI-Kmeans clustering.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ndarray
|
Samples |
required |
y
|
list of int
|
Labels of the samples, expects -1 if the label is not known |
required |
Returns:
| Type | Description |
|---|---|
MCIKmeans
|
Fitted estimator |
Source code in streamndr/utils/mcikmeans.py
fit_predict(X, y)
Compute cluster centers and predict cluster index for each sample. Convenience method; equivalent to calling fit(X) followed by predict(X).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ndarray
|
Samples |
required |
y
|
list of int
|
Labels of the samples, expects -1 if the label is not known |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Index of the cluster each sample belongs to |
Source code in streamndr/utils/mcikmeans.py
predict(X)
Predict the closest cluster each sample in X belongs to.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
X
|
ndarray
|
Samples to predict |
required |
Returns:
| Type | Description |
|---|---|
ndarray
|
Index of the cluster each sample belongs to |