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
Currently, the preprocessing pipeline is applied to the entire training set before the evolution of pipelines. This is fine for things like one hot encoding.
We may want some parts of preprocessing to be trained per fold of cross-validation, such as iterative imputer. However, this is expensive and should be done only once.
This is something we may consider implementing into TPOT2. However, it is also something users can implement themselves as a custom objective function as well.
The text was updated successfully, but these errors were encountered:
Currently, the preprocessing pipeline is applied to the entire training set before the evolution of pipelines. This is fine for things like one hot encoding.
We may want some parts of preprocessing to be trained per fold of cross-validation, such as iterative imputer. However, this is expensive and should be done only once.
This is something we may consider implementing into TPOT2. However, it is also something users can implement themselves as a custom objective function as well.
The text was updated successfully, but these errors were encountered: