-
-
Notifications
You must be signed in to change notification settings - Fork 558
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
119 changed files
with
59,072 additions
and
1,774 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -121,3 +121,5 @@ fabric.properties | |
# modules.xml | ||
# .idea/misc.xml | ||
# *.ipr | ||
|
||
.idea |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,20 @@ | ||
Yellowbrick is a suite of visual analysis and diagnostic tools designed to facilitate machine learning with Scikit-Learn. The package includes visualizations that can help users navigate the feature selection process, build intuition around model selection, diagnose common problems like bias, heteroscedasticity, underfit, and overtraining, and support hyperparameter tuning to steer predictive models toward more successful results. | ||
Yellowbrick is a suite of visual analysis and diagnostic tools designed to facilitate machine learning with Scikit-Learn. The library implements a new core API object, the "Visualizer" that is an Scikit-Learn estimator: an object that learns from data. Like transformers or models, visualizers learn from data by creating a visual representation of the model selection workflow. | ||
|
||
Visualizers allow users to steer the model selection process, building intuition around feature engineering, algorithm selection, and hyperparameter tuning. For example, visualizers can help diagnose common problems surrounding model complexity and bias, heteroscedasticity, underfit and overtraining, or class balance issues. By applying visualizers to the model selection workflow, Yellowbrick allows you to steer predictive models to more successful results, faster. | ||
|
||
Some of the available tools include: | ||
|
||
- histograms | ||
- scatter plot matrices | ||
- pairwise feature ranking | ||
- parallel coordinates | ||
- jointplots | ||
- radial visualization | ||
- ROC curves | ||
- classification heatmaps | ||
- residual plots | ||
- prediction error plots | ||
- alpha selection plots | ||
- validation curves | ||
- gridsearch heatmaps | ||
- text frequency distributions | ||
- tsne corpus visualization | ||
|
||
For more, please see the full documentation at: http://yellowbrick.readthedocs.org/en/latest/ | ||
And much more! Please see the full documentation at: http://scikit-yb.org/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Maintainers and Contributors | ||
|
||
This file describes how the Yellowbrick project is maintained and provides contact information for key folks in the project. | ||
|
||
When creating a pull request, your contribution will be reviewed by one or probably two maintainers who will give you the :+1: when your extension is ready to be merged. Maintainers work hard to ensure that Yellowbrick is a high quality project and that contributors are successful. | ||
|
||
For more about how to develop visualizers and contribute features to Yellowbrick, see our [contributor's guide](CONTRIBUTING.md) and the documentation. | ||
|
||
## Maintainers | ||
|
||
This is a list of the primary project maintainers. Feel free to @ message them in issues and converse with them directly. | ||
|
||
- [bbengfort](https://github.com/bbengfort) | ||
- [NealHumphrey](https://github.com/NealHumphrey) | ||
- [jkeung](https://github.com/jkeung) | ||
|
||
## Core Contributors | ||
|
||
This is a list of the core-contributors of the project. Core contributors set the road map and vision of the project. Keep an eye out for them in issues and check out their work to use as inspiration! Most likely they would also be happy to chat and answer questions. | ||
|
||
- [rebeccabilbro](https://github.com/rebeccabilbro) | ||
- [mattandahalfew](https://github.com/mattandahalfew) | ||
- [pdamodaran](https://github.com/pdamodaran) | ||
- [ndanielsen](https://github.com/ndanielsen) | ||
- [tuulihill](https://github.com/tuulihill) | ||
- [balavenkatesan](https://github.com/balavenkatesan) | ||
- [morganmendis](https://github.com/morganmendis) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* override table width restrictions */ | ||
@media screen and (min-width: 767px) { | ||
|
||
.wy-table-responsive table td { | ||
/* !important prevents the common CSS stylesheets from overriding | ||
this as on RTD they are loaded after this stylesheet */ | ||
white-space: normal !important; | ||
} | ||
|
||
.wy-table-responsive { | ||
overflow: visible !important; | ||
} | ||
} |
Oops, something went wrong.