Closed simonsung06 closed 11 months ago
@simonsung06: I think the tests are failing due to the rdkit issue that you already fixed. I just merged it into main. Just merge it into your PR and the tests should work again!
Thanks for the suggestion. The changes have been made.
Regarding adding it for GP's too should be an easy addition. Would you like me to do this in another PR?
Regarding adding it for GP's too should be an easy addition. Would you like me to do this in another PR?
No need to hurry, if you find time, it would be nice to have it in a seperate PR.
Added an output_scaler option for the MLP Ensemble surrogate. This is to give extra flexibility where standardizing data often improves fitting. I have set
ScalerEnum.STANDARDIZE
as the default output_scaler because this is common practice for regression problems. Currently only standardization and identity scalers are usable. Normalization is not implemented since there is no output transform for this natively on BoTorch. If needed one day, maybe we could implement it (but i believe standardization should be sufficient for us).