minas
Minas
Bases: MiniBatchClassifier
Implementation of the MINAS algorithm for novelty detection. [1]
[1] de Faria, Elaine Ribeiro, André Carlos Ponce de Leon Ferreira Carvalho, and Joao Gama. "MINAS: multiclass learning algorithm for novelty detection in data streams." Data mining and knowledge discovery 30 (2016): 640-680.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
kini |
int
|
Number of K clusters for the clustering (KMeans or Clustream) algorithm |
3
|
cluster_algorithm |
str
|
String containing the clustering algorithm to use, supports 'kmeans' and 'clustream' |
'kmeans'
|
random_state |
int
|
Seed for the random number generation. Makes the algorithm deterministic if a number is provided. |
None
|
min_short_mem_trigger |
int
|
Minimum number of samples in the short term memory to trigger the novelty detection process |
10
|
min_examples_cluster |
int
|
Minimum number of samples to from a cluster |
10
|
threshold_strategy |
int
|
Strategy to use to compute the threshold. Can be '1', '2', or '3' as described in the MINAS paper. |
1
|
threshold_factor |
float
|
Factor for the threshold computation |
1.1
|
window_size |
int
|
Number of samples used by the forgetting mechanism |
100
|
update_summary |
bool
|
Whether or not the microcluster's properties are updated when a new point is added to it |
False
|
verbose |
int
|
Controls the level of verbosity, the higher, the more messages are displayed. Can be '1', '2', or '3'. |
0
|
Attributes:
Name | Type | Description |
---|---|---|
MAX_MEMORY_SIZE |
int
|
Constant used to determine the maximum number of rows used by numpy for the computation of the closest clusters. A higher number is faster but takes more memory. |
before_offline_phase |
bool
|
Whether or not the algorithm was initialized (offline phase). The algorithm needs to first be initialized to be used in an online fashion. |
short_mem |
list of ShortMemInstance
|
Buffer memory containing the samples labeled as unknown temporarily for the novelty detection process |
sleep_mem |
list of MicroCluster
|
Microclusters that have not have any new points added from the strem for a period of time are temporarily moved to a sleep memory |
nb_class_unknown |
dict
|
Tracks the number of samples of each true class value currently in the unknown buffer (short_mem). Used to compute the unknown rate. |
class_sample_counter |
dict
|
Tracks the total number of samples of each true class value seen in the stream. Used to compute the unknown rate. |
sample_counter |
int
|
Number of samples treated, used by the forgetting mechanism |
Source code in streamndr/model/minas.py
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 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 |
|
get_class_unknown_rate()
Returns the unknown rate per class. Represents the percentage of unknown samples on the total number of samples of that class seen during the stream.
Returns:
Type | Description |
---|---|
dict
|
Dictionary containing the unknown rate of each class |
Source code in streamndr/model/minas.py
get_unknown_rate()
Returns the unknown rate, represents the percentage of unknown samples on the total number of samples classified in the online phase.
Returns:
Type | Description |
---|---|
float
|
Unknown rate |
Source code in streamndr/model/minas.py
learn_many(X, y, w=1.0)
Represents the offline phase of the algorithm. Receives a number of samples and their given labels and learns all of the known classes.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
DataFrame or ndarray
|
Samples to be learned by the model |
required |
y |
list of int
|
Labels corresponding to the given samples, must be the same length as the number of samples |
required |
w |
float
|
Weights, not used, by default 1.0 |
1.0
|
Returns:
Type | Description |
---|---|
Minas
|
Fitted estimator |
Source code in streamndr/model/minas.py
learn_one(x, y, w=1.0)
Function used by river algorithms to learn one sample. It is not applicable to this algorithm since the offline phase requires all samples to arrive at once. It is only added as to follow River's API.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
x |
dict
|
Sample |
required |
y |
int
|
Label of the given sample |
required |
w |
float
|
Weight, not used, by default 1.0 |
1.0
|
Source code in streamndr/model/minas.py
predict_many(X, y=None)
Represents the online phase. Receives multiple samples, for each sample predict its label and adds it to the cluster if it is a known class. Otherwise, if it's unknown, it is added to the short term memory and novelty detection is performed once the trigger has been reached (min_short_mem_trigger).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
DataFrame or ndarray
|
Samples |
required |
y |
list of int
|
True y values of the samples, if available. Only used for metric evaluation (UnkRate). |
None
|
Returns:
Type | Description |
---|---|
ndarray
|
Array of length len(X) containing the predicted labels, predicts -1 if the corresponding sample labeled as unknown |
Raises:
Type | Description |
---|---|
Exception
|
If the model has not been trained first with learn_many() (offline phase) |
Source code in streamndr/model/minas.py
predict_one(X, y=None)
Represents the online phase. Equivalent to predict_many() with only one sample. Receives only one sample, predict its label and adds it to the cluster if it is a known class. Otherwise, if it's unknown, it is added to the short term memory and novelty detection is performed once the trigger has been reached (min_short_mem_trigger).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
X |
dict
|
Sample |
required |
y |
int
|
True y value of the sample, if available. Only used for metric evaluation (UnkRate). |
None
|
Returns:
Type | Description |
---|---|
ndarray
|
Label predicted for the given sample, predicts -1 if labeled as unknown |