packages feed

dataframe-learn-1.1.0.0: src/DataFrame/Boosting.hs

{- | Tree ensembles: gradient boosting (the recommended default) and AdaBoost
(SAMME). Re-exports the focused submodules.
-}
module DataFrame.Boosting (
    module DataFrame.Boosting.GBM,
    module DataFrame.Boosting.AdaBoost,
) where

import DataFrame.Boosting.AdaBoost
import DataFrame.Boosting.GBM