An Azure machine learning service for building and deploying models.
@Rajavarman Thanks for the question. Previously, it was a black-box preprocessing, with user’s preprocess=True/False setting.
New change includes deprecation of preprocess and introduction of new field featurization, where featurization = ‘auto’ (for automatic featurization, comparable to preprocess=True) / ‘off’ (to turn off featurization, comparable to preprocess=False) / FeaturizationConfig (object to pass in customized configuration on featurization setting).
For more information on custom featurization as well as how to construct FeaturizationConfig is in this documentation: https://learn.microsoft.com/en-us/azure/machine-learning/how-to-configure-auto-train#customize-feature-engineering
We also have a notebook available with example in our git repo: https://github.com/Azure/MachineLearningNotebooks/blob/master/how-to-use-azureml/automated-machine-learning/regression-hardware-performance-explanation-and-featurization/auto-ml-regression-hardware-performance-explanation-and-featurization.ipynb