I know you can AdaBoost with multiple instances of a single model (e.g., 600 Decision Trees, Bayesian Ridges, or Linear Models). Is it possible to AdaBoost with a gauntlet of models at the same time, and how?
AdaBoost([DecisionTree, BayesianRidge, LinearRegressor, ...])
Each standalone model has its pros and cons, and I was wondering if it was possible to mash them all together under an umbrella.