Yellowbrick v1.3
Description
Yellowbrick is an open source, pure Python project that extends the scikit-learn API with visual analysis and diagnostic tools. The Yellowbrick API also wraps matplotlib to create publication-ready figures and interactive data explorations while still allowing developers fine-grain control of figures. For users, Yellowbrick can help evaluate the performance, stability, and predictive value of machine learning models and assist in diagnosing problems throughout the machine learning workflow.
This version primarily repairs the dependency issues we faced with scipy 1.6, scikit-learn 0.24 and Python 3.6 (or earlier). As part of the rapidly changing Python library landscape, we’ve been forced to react quickly to dependency changes, even where those libraries have been responsibly issuing future and deprecation warnings.
Major Changes:
-
Implement new
set_params
andget_params
on ModelVisualizers to ensure wrapped estimator is being correctly accessed via the new Estimator methods. -
Freeze the test dependencies to prevent variability in CI (must periodically review dependencies to ensure we’re testing what our users are experiencing).
-
Change
model
param toestimator
param to ensure that Visualizer arguments match their property names so that inspect works with get and set params and other scikit-learn utility functions.
Minor Changes:
-
Import scikit-learn private API
_safe_indexing
without error. -
Remove any calls to
set_params
in Visualizer__init__
methods. -
Modify test fixtures and baseline images to accommodate new sklearn implementation
-
Set the numpy dependency to be less than 1.20 because this is causing Pickle issues with joblib and umap
-
Add
shuffle=True
argument to any CV class that uses a random seed. -
Set our CI matrix to Python and Miniconda 3.7 and 3.8
-
Correction in README regarding ModelVisualizer API.
Files
yellowbrick-1.3.zip
Files
(59.6 MB)
Name | Size | Download all |
---|---|---|
md5:42f659b1e5ac24891936b4fbd51341a7
|
29.5 MB | Download |
md5:d07369cfb7902e731beb6d8e1fa61fba
|
30.1 MB | Preview Download |
Additional details
Related works
- Is documented by
- http://www.scikit-yb.org/en/stable/ (URL)
- Is supplemented by
- https://github.com/DistrictDataLabs/yellowbrick/releases/tag/v0.6 (URL)