evalml
evalml copied to clipboard
EvalML is an AutoML library written in python.
I noticed a weird error in https://github.com/alteryx/evalml/pull/2546, a small PR which moved `get_hyperparameter_ranges` to `PipelineBase`. The failed ReadtheDocs build is here: https://readthedocs.com/projects/feature-labs-inc-evalml/builds/683782/, with the following error: ``` Traceback (most recent...
As a developer, I wish I could use EvalML to decompose time series data into trend, seasonal, and residual values. These would be useful for graphing purposes and for leveraging...
With the addition of the `SelectByType` transformer in #2531, it came up that having `SelectByType` inherit from `ColumnSelector` doesn't add much value at this point. However, it makes logical sense...
The exploration of the performance of one of our perf test datasets in #2628 raised the notice that the dataset has too many dimensions when compared to the number of...
Check [this PR ](https://github.com/alteryx/evalml/pull/2690/files#) and merge together all the Dataframes that were changed into a single Dataframe test fixture.
See : https://github.com/alteryx/evalml/pull/2690/files# Can probably move the ww.init back to the fixture.
We currently use graphviz to generate our graphical representation of component graphs / pipelines. https://github.com/alteryx/evalml/pull/2654 updated this representation to include X and y nodes and edges, but seems a little...
Check out [this PR](https://github.com/alteryx/evalml/pull/2690/files) and try to pull the common series into a fixture.
Per #2667 , it was noted that a DaskEngine can't be used in a context manager as the manager will shutdown the associated cluster. We should probably modify the `__enter__()`...