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.
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
Azure SDK for Python