TabularFeaturizationSettings Class
Featurization settings for an AutoML Job.
- Inheritance
-
azure.ai.ml.entities._job.automl.featurization_settings.FeaturizationSettingsTabularFeaturizationSettings
Constructor
TabularFeaturizationSettings(*, blocked_transformers: List[BlockedTransformers | str] | None = None, column_name_and_types: Dict[str, str] | None = None, dataset_language: str | None = None, transformer_params: Dict[str, List[ColumnTransformer]] | None = None, mode: str | None = None, enable_dnn_featurization: bool | None = None)
Parameters
Name | Description |
---|---|
blocked_transformers
Required
|
A list of transformers to ignore when featurizing. |
column_name_and_types
Required
|
A dictionary of column names and feature types used to update column purpose. |
dataset_language
Required
|
The language of the dataset. |
transformer_params
Required
|
A dictionary of transformers and their parameters. |
mode
Required
|
The mode of the featurization. |
enable_dnn_featurization
Required
|
Whether to enable DNN featurization. |
Keyword-Only Parameters
Name | Description |
---|---|
blocked_transformers
Required
|
|
column_name_and_types
Required
|
|
dataset_language
Required
|
|
transformer_params
Required
|
|
mode
Required
|
|
enable_dnn_featurization
Required
|
|
Variables
Name | Description |
---|---|
type
|
Specifies the type of FeaturizationSettings. Set automatically to "Tabular" for this class. |
Attributes
blocked_transformers
A list of transformers to ignore when featurizing.
transformer_params
A dictionary of transformers and their parameters.
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Azure SDK for Python