π Gradient Boosting Regressor
Trained using Scikit-learn's Gradient Boosting Regressor. Performs sequential boosting to improve performance iteratively. Trained to predict crop yield based on climate features.
π¦ File
gradient_boosting_model.pkl
π§ Use Case
Effective for handling complex relationships and interactions in moderate-sized datasets.
βοΈ Model Info
- Estimator: GradientBoostingRegressor
- Loss: Squared Error
- Learning Rate: Default
π Performance
- RMSE: 21465.13
- MAE: 13028.23
- RΒ² Score: 0.93
- MAPE: 30.02%
π‘ Usage
import joblib
model = joblib.load("gradient_boosting_model.pkl")
y_pred = model.predict(X_test)