I am using a H20GeneralizedLinearEstimator in h2o.ai.
I am planning to use the cross validation built-in option to get cross validated performances. Before fitting the model, I perform some transformations (scaling and translating mainly) that depend on the data I am applying the transformations to.
Ideally these transformations should be "trained" just on the train set and applied asis on the test data. Therefore, in principle, the same should be done during cross validation: at each cross validation step, the transformation should be trained on the relative train data and applied to test data.
Is it possible to do so in H2O, without having to manually implement a cross validation loop?
Thanks