Search code examples
scikit-learnadaboost

what is the algorithm details of "AdaboostRegression" in machine learning fields?


I have search much for this question, including "adaboost" paper which only explains "AdaboostClassifier" method; Now I want to code "AdaboostRegression" in Python and I can't find the exact details for coding. I also check 'sklearn' about this method, but I can't find the detail which maybe hides in 'sklearn'; so shall I get more information about it?


Solution

  • You can find details in the AdaBoostRegressor class.