You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When the optimal imputer is selected by Adjutorium, StackingEnsemble and AggregatingEnsemble failed due to missing data checking in upstream implementation.
...
[2022-05-25T16:53:43.553802+0100][45426][INFO] StackingEnsemble failed Input contains NaN, infinity or a value too large for dtype('float64').
[2022-05-25T16:53:43.579949+0100][45426][INFO] AggregatingEnsemble failed Input contains NaN, infinity or a value too large for dtype('float64').
...
Note
This is due to the input validation in the upstream module combo
...
deffit(self, X, y):
"""Fit classifier. Parameters ---------- X : numpy array of shape (n_samples, n_features) The input samples. y : numpy array of shape (n_samples,), optional (default=None) The ground truth of the input samples (labels). """# Validate inputs X and yX, y=check_X_y(X, y)
X=check_array(X)
self._set_n_classes(y)
...
The StackingEnsemble and AggregatingEnsemble crash at this line even though the imputer is included in the pipeline.
The input data should be imputed before provided to these ensembles. Alternatively, this behavior could be overrode with a customized implementation.
The text was updated successfully, but these errors were encountered:
Describe the bug
When the optimal imputer is selected by Adjutorium, StackingEnsemble and AggregatingEnsemble failed due to missing data checking in upstream implementation.
Example to reproduce
Result
Information below can be found in the log.
Note
This is due to the input validation in the upstream module combo
The StackingEnsemble and AggregatingEnsemble crash at this line even though the imputer is included in the pipeline.
The input data should be imputed before provided to these ensembles. Alternatively, this behavior could be overrode with a customized implementation.
The text was updated successfully, but these errors were encountered: