mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-30 13:48:57 +08:00
13 lines
322 B
Go
13 lines
322 B
Go
![]() |
/*
|
||
|
|
||
|
Meta contains base.Classifier implementations which
|
||
|
combine the outputs of others defined elsewhere.
|
||
|
|
||
|
Bagging:
|
||
|
Bootstraps samples of the original training set
|
||
|
with a number of selected attributes, and uses
|
||
|
that to train an ensemble of models. Predictions
|
||
|
are generated via majority voting.
|
||
|
*/
|
||
|
|
||
|
package meta
|