BigDataWUR / AgML-CY-Bench

CY-Bench (Crop Yield Benchmark) is a comprehensive dataset and benchmark to forecast crop yields at subnational level. CY-Bench standardizes selection, processing and spatio-temporal harmonization of public subnational yield statistics with relevant predictors. Contributors include agronomers, climate scientists and machine learning researchers.
https://cybench.agml.org/
Other
18 stars 8 forks source link

redesign sklearn models with a `BaseSklearnModel` #281

Closed krsnapaudel closed 3 months ago

krsnapaudel commented 4 months ago

The redesign will put most of the model initialization and hyperparameter tuning code inside sub classes of BaseSklearnModel.

BaseSklearnModel would do most of the work in terms of feature design, feature selection, hyperparameter tuning and other training steps. Subclasses would pass the scikit-learn estimator, feature selector and parameter space as required.