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
Is there a way to access the values learned by a fitted feature specification?
Like the mean and standard deviation learned by the scaler_standard() function, or
the values for vocabulary of categorical variables?
Thanks,
Sergio
The text was updated successfully, but these errors were encountered:
The problem is that the mean and the sd are defined in the StandardScaler object that is not stored in the StepNumericColumn (only the function is stored after calling the method fit_resume).
With this setting, the object cannot be saved, and in a new R session the pointer to the normalizer function is lost.
It would be important to be able to save the specification, in order to avoid the need of re-fitting the object.
The same applies to the min_max_scaler function.
Maybe a possible solution would be to store the whole StandardScaler object and call the function only in the feature method?
Is there a way to access the values learned by a fitted feature specification?
Like the mean and standard deviation learned by the
scaler_standard()
function, orthe values for vocabulary of categorical variables?
Thanks,
Sergio
The text was updated successfully, but these errors were encountered: