Skip to content

Commit

Permalink
fixed typo in CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
PyCaret committed Feb 21, 2021
1 parent 1a62d31 commit 1b6b274
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,29 +1,29 @@
# Changelog
All notable changes to this project will be documented in this file.

### Release: PyCaret 2.3 | Release Date: Februray 21, 2021

## Summary of Changes
### Release: PyCaret 2.3.0 | Release Date: February 21, 2021

- **Modules Impacted:** `pycaret.classification` `pycaret.regression` `pycaret.clustering` `pycaret.anomaly` `pycaret.arules`

## Summary of Changes

- Added new interactive residual plots in `pycaret.regression` module. You can now generate interactive residual plots by using `residuals_interactive` in the `plot_model` function.
- Added plot rendering support for streamlit applications. A new parameter `display_format` is added in the `plot_model` function. To render plot in streamlit app, set this to `streamlit`.
- Revamped Boruta feature selection algorithm. (give it a try!)
- Revamped Boruta feature selection algorithm. (give it a try!).
- `tune_model` in `pycaret.classification` and `pycaret.regression` is now compatible with custom models.
- Added low_memory and max_len support to association rules module (https://github.com/pycaret/pycaret/pull/1008)
- Increased robustness of DataFrame checks (https://github.com/pycaret/pycaret/pull/1005)
- Improved loading of models from AWS (https://github.com/pycaret/pycaret/pull/1005)
- Added low_memory and max_len support to association rules module (https://github.com/pycaret/pycaret/pull/1008).
- Increased robustness of DataFrame checks (https://github.com/pycaret/pycaret/pull/1005).
- Improved loading of models from AWS (https://github.com/pycaret/pycaret/pull/1005).
- Catboost and XGBoost are now optional dependencies. They are not automatically installed with default slim installation. To install optional dependencies use `pip install pycaret[full]`.
- Added `raw_score` argument in the `predict_model` function for `pycaret.classification` module. When set to True, scores for each class will be returned separately.
- PyCaret now returns base scikit-learn objects, whenever possible
- PyCaret now returns base scikit-learn objects, whenever possible.
- When `handle_unknown_categorical` is set to False in the `setup` function, an exception will be raised during prediction if the data contains unknown levels in categorical features.
- `predict_model` for multiclass classification now return labels as integer.
- Fixed an edge case where an IndexError would be raised in `pycaret.clustering` and `pycaret.anomaly`
- `predict_model` for multiclass classification now returns labels as an integer.
- Fixed an edge case where an IndexError would be raised in `pycaret.clustering` and `pycaret.anomaly`.
- Fixed text formatting for certain plots in `pycaret.classification` and `pycaret.regression`.
- If a `logs.log` file cannot be created when `setup` is initialized, no exception will be raised now (support for more configurable logging to come in future)
- User added metrics will not raise exceptions now and instead return 0.0
- Compatibility with tune-sklearn>=0.2.0
- If a `logs.log` file cannot be created when `setup` is initialized, no exception will be raised now (support for more configurable logging to come in future).
- User added metrics will not raise exceptions now and instead return 0.0.
- Compatibility with tune-sklearn>=0.2.0.
- Fixed an edge case for dropping NaNs in target column.
- Fixed stacked models not being tuned correctly.
- Fixed an exception with KFold when fold_shuffle=False.
Expand Down

0 comments on commit 1b6b274

Please sign in to comment.