79787660

Date: 2025-10-10 20:16:07
Score: 1
Natty:
Report link

i stacked using

from sklearn.ensemble import HistGradientBoostingRegressor, GradientBoostingRegressor, StackingRegressor

from sklearn.linear_model import RidgeCV

stack = StackingRegressor(
    estimators=[
        ('hgb', hgb),
        ('gbr', gbr)
    ],
    final_estimator=RidgeCV(),
    n_jobs=-1
)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: KMushfiqur