@@ -102,6 +102,7 @@ def __init__(
102102 instance_groups : Optional [List [InstanceGroup ]] = None ,
103103 training_repository_access_mode : Optional [Union [str , PipelineVariable ]] = None ,
104104 training_repository_credentials_provider_arn : Optional [Union [str , PipelineVariable ]] = None ,
105+ enable_infra_check : Optional [Union [bool , PipelineVariable ]] = None ,
105106 container_entry_point : Optional [List [str ]] = None ,
106107 container_arguments : Optional [List [str ]] = None ,
107108 disable_output_compression : Optional [bool ] = None ,
@@ -485,6 +486,8 @@ def __init__(
485486 private Docker registry where your training image is hosted (Default: None).
486487 When it's set to None, SageMaker will not do authentication before pulling the image
487488 in the private Docker registry. (Default: None).
489+ enable_infra_check (Optional[Union[bool, PipelineVariable]]):
490+ Specifies whether it is running Sagemaker built-in infra check jobs.
488491 container_entry_point (Optional[List[str]]): The entrypoint script for a Docker
489492 container used to run a training job. This script takes precedence over
490493 the default train processing instructions.
@@ -565,6 +568,7 @@ def _is_valid_model_id_hook():
565568 container_entry_point = container_entry_point ,
566569 container_arguments = container_arguments ,
567570 disable_output_compression = disable_output_compression ,
571+ enable_infra_check = enable_infra_check ,
568572 )
569573
570574 self .model_id = estimator_init_kwargs .model_id
0 commit comments