mudasiryasin's picture
Create README.md
ab4db64 verified

πŸ” 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)