evalml
evalml copied to clipboard
EvalML is an AutoML library written in python.
Currently if a list is passed as a `component_graph` to a pipeline, the `component_dict` outputs the class object as the first item in the value of the list within `_make_component_dict_from_component_list`...
``test_components.py::test_describe_component`` is a test that checks if a component.describe() returns the appropriate result. However, if a dev adds a new component, there is nothing requiring the dev to add that...
Check out the changes made in #2690 to the title unit tests and try to merge series/dataframes into a single fixture.
Refer to the blocks of code changed in #2690 and merged the test dataframes into a single, module based fixture.
The Dask documentation suggests [using Dask Dataframes.](https://docs.dask.org/en/latest/best-practices.html#load-data-with-dask). Is this even possible using Woodwork? Is it worth it?
Per our discussion on #3310 , we wanted to create a similar `retain_ww_schema` style tests that copies `def test_drop_rows_transformer_retain_ww_schema():` in `evalml/tests/component_tests/test_drop_nan_rows_transformer.py` but have them iterate over all the components. Successful...
In order to build transformers that transform the target variable, i.e. #1944 and #914, our all of our transformers must return both `X` and `y` for the target transformations to...
https://stackoverflow.com/a/59076067 If we set a timeout on the overall runtime of the unit tests, that could be helpful in preventing us from adding a bunch of short-running tests which cumulatively...
As a team lead/manager, I would like to establish an automated system to track increase/decrease of CI check completion time so that I can fail PRs that drastically increase CI...