mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
14 lines
323 B
Go
14 lines
323 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
|