mirror of
https://github.com/sjwhitworth/golearn.git
synced 2025-04-26 13:49:14 +08:00
13 lines
252 B
Go
13 lines
252 B
Go
/*
|
|
|
|
Ensemble contains classifiers which combine other classifiers.
|
|
|
|
RandomForest:
|
|
Generates ForestSize bagged decision trees (currently ID3-based)
|
|
each considering a fixed number of random features.
|
|
|
|
Built on meta.Bagging
|
|
|
|
*/
|
|
|
|
package ensemble |