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.
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.
Azure SDK for Python