The world's cleanest AutoML library ✨ - Do hyperparameter tuning with the right pipeline abstractions to write clean deep learning production pipelines. Let your pipeline steps have hyperparameter spaces. Design steps in your pipeline like components. Compatible with Scikit-Learn, TensorFlow, and most other libraries, frameworks and MLOps environments.
Describe the bug
Apply call made on AutoML instances do not reach steps contained within the pipeline.
Expected behavior
AutoML should transmit apply calls to its children (i.e. the main pipeline)
Additional context
This bug happens because AutoML does not implement the _hasChildrenMixin interface and thus uses the basic apply() function instead of the recursive one.
Describe the bug Apply call made on AutoML instances do not reach steps contained within the pipeline.
Expected behavior AutoML should transmit apply calls to its children (i.e. the main pipeline)
Additional context This bug happens because AutoML does not implement the _hasChildrenMixin interface and thus uses the basic apply() function instead of the recursive one.
I'll fix this in my next PR.