Nathan
Nathan
Without too much work, it appears that we can create an animated image that captures changes to a dataset over time or some series related domain. We could accomplish this...
This is an initial issue to track and research incorporating interactive Jupyter Notebook widgets into yellowbrick. Likely any outputs from this would be well placed in the `contrib` module A...
Create an Identify estimator to allow yellowbrick to use datasets that already contain predicted probabilities ``` from sklearn.base import BaseEstimator, ClassifierMixin class Identity(BaseEstimator, ClassifierMixin): def fit(self, X, y=None): return self...
The concept is to create a visualizer utility / transformer method to create multiple plots that each have a focus on one element / class in a set of values....
Add labels with metrics such as recall, precision, tpr and etc to the DecisionBoundaryVisualizer As seen in as the visualizations in this blog post: https://medium.com/towards-data-science/what-metrics-should-we-use-on-imbalanced-data-set-precision-recall-roc-e2e79252aeba Example from the blog post:...
Great project! I love it! Wondering if i can import a csv that contains geographical data. For example, something like this c = CopyMapping( MyModel, "./data.csv", dict(point=['x', 'y'], number='NUMBER') )...
Loving this project. I feel like this project would benefit from a short quick start tutorial that demonstrate common methods such as: **Create item** ``` mutation = Operation(schema.Mutation) # note...
The example in the readme does not work for me on python 3.4. Here's an example that does work for me -- just sharing. ``` import codecs reader = codecs.getreader("utf-8")...
Received the follow error when building, this fixes it -- Configuring incomplete, errors occurred! See also "/root/opencv/build/CMakeFiles/CMakeOutput.log". See also "/root/opencv/build/CMakeFiles/CMakeError.log". CMake Error: The following variables are used in this project,...
License?
Love the stuff in here. What is it licensed under?