1
0
mirror of https://github.com/sjwhitworth/golearn.git synced 2025-04-26 13:49:14 +08:00
golearn/meta/meta.go
Amit Kumar Gupta 94e5843bcf go fmt ./...
2014-08-22 06:55:20 +00:00

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