Regression Model and Prediction
Learn how to build and tune parameters of regression models using H2O.
We'll cover the following...
H2OXGBoost is an implementation of the XGBoost algorithm within the H2O framework. It’s based on the tree-based gradient boosting algorithm that uses an ensemble of weak learners to produce a final model. H2OXGBoost is well known for its high performance and scalability on various machine learning tasks.
Regression model: H2OXGBoostEstimator
In this lesson, we’re going to train the H2OXGBoostEstimator regression model to predict flight fares from the airline dataset. The H2OXGBoostEstimator algorithm uses gradient boosting to train ensemble models. Gradient boosting ...