1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-26 13:49:14 +08:00
golearn/meta/meta.go

14 lines
323 B
Go
Raw Normal View History

2014-08-02 16:22:15 +01:00
/*
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.
*/
2014-08-22 06:55:20 +00:00
package meta