I use ImageDataGenerator .fit() to normalize training data. But then there is no elegant way to perform .standardize() on real when I deploy the model (different running code then training).
I realize I can extract the normalization params, save them somewhere and then perform the normalization myself but then it would be easier to write it myself to begin with.
Is there a way to this in the current design? Is there a way to do .standardize() long after the training code has completed?