Skip to content

Releases: uclamii/model_tuner

Model Tuner 0.0.16a

25 Oct 00:44
Compare
Choose a tag to compare
Model Tuner 0.0.16a Pre-release
Pre-release

Version 0.0.16a

  • Custom pipeline steps now updated (our pipeline usage has been completely changed and should now order itself and support non named steps) always ensures correct order
  • This fixed multiple other issues that were occuring to do with logging of imbalanced learn
  • Reporting model metrics now works.
  • AutoKeras code deprecated and removed.
  • KFold bug introduced because of CatBoost. This has now been fixed.
  • Pretty print of pipeline.
  • Boosting variable has been renamed.
  • Version constraints have been updated and refactored.
  • tune_threshold_Fbeta has been cleaned up to remove unused parameters.
  • train_val_test unnecessary self removed and taken outside of class method.
  • deprecated setup.py in favor of pyproject.toml per forthcoming pip25 update.

Model Tuner 0.0.15a

13 Sep 21:31
Compare
Choose a tag to compare
Model Tuner 0.0.15a Pre-release
Pre-release

Version 0.0.15a

Contains all previous fixes relating to:

  • CatBoost support (early stopping, and support involving resetting estimators).
  • Pipeline steps now support hyperparameter tuning of the resamplers (SMOTE, ADASYN, etc.).
  • Removed older implementations of impute and scaling and moved onto supporting only custom pipeline_steps.
  • Fixed bugs in stratification with regards to length mismatch of dependent variable when using column names to stratify.
  • Cleaned a removed multiple lines of unused code and unused initialisation parameters.

Model Tuner 0.0.14a

27 Aug 18:49
Compare
Choose a tag to compare
Model Tuner 0.0.14a Pre-release
Pre-release

Version 0.0.14a

In previous versions, the train_val_test_split method allowed for stratification either by y (stratify_y) or by specified columns (stratify_cols), but not both at the same time. There are use cases where stratification by both the target variable (y) and specific columns is necessary to ensure a balanced and representative split across different data segments.

Enhancement

Modified the train_val_test_split method to support simultaneous stratification by both stratify_y and stratify_cols. This was inside the method achieved by implementing the following logic that ensures both y and the specified columns are considered during the stratification process.

stratify_key = pd.concat([X[stratify_cols], y], axis=1)

strat_key_val_test = pd.concat(
    [X_valid_test[stratify_cols], y_valid_test], axis=1
)

Model Tuner 0.0.13a

26 Aug 21:47
Compare
Choose a tag to compare
Model Tuner 0.0.13a Pre-release
Pre-release

Version 0.0.13a

  • Updated bootstrapper
  • evaluate_bootstrap_metrics
  • Added notebooks/xgb_early_bootstrap_test.py to test it
  • Updated requirements.txt file for dev testing
  • Fixed sampling error on low number of samples inside bootstrapper

Model Tuner 0.0.12a

16 Jul 00:57
51b39ac
Compare
Choose a tag to compare
Model Tuner 0.0.12a Pre-release
Pre-release
  • Xgboost bug fixes
  • Zenodo updates
  • Pickle model fixes with np import
  • ADASYN and SMOTE fix with no fit happening when calibrating

model_tuner 0.0.11a

11 Jul 18:43
Compare
Choose a tag to compare
model_tuner 0.0.11a Pre-release
Pre-release
  • updated readme for PyPI
  • previous version not saved on setup; re-release to 0.0.11a

model_tuner 0.0.10a

11 Jul 18:39
Compare
Choose a tag to compare
model_tuner 0.0.10a Pre-release
Pre-release
  • updated readme for PyPI

model tuner 0.0.09a

11 Jul 18:18
d3756c2
Compare
Choose a tag to compare
model tuner 0.0.09a Pre-release
Pre-release
  • number of estimators now extracted from XGBoost model object
  • early stopping fixed

model_tuner 0.0.08a

04 Jul 00:07
Compare
Choose a tag to compare
model_tuner 0.0.08a Pre-release
Pre-release

AutoKerasClassifier

  • Changed 'layers' key to store count instead of list to avoid exceeding MLflow's 500-char limit.
  • Simplified function by removing key filtering loop.

model tuner 0.0.07a

03 Jul 23:37
Compare
Choose a tag to compare
model tuner 0.0.07a Pre-release
Pre-release

What's Changed

Full Changelog: 0.0.06a...0.0.07a