| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | from __future__ import absolute_import |
| |
|
| | import os |
| | import uuid |
| |
|
| | import pytest |
| |
|
| | from sagemaker.debugger.debugger import ( |
| | DEBUGGER_FLAG, |
| | DebuggerHookConfig, |
| | Rule, |
| | rule_configs, |
| | TensorBoardOutputConfig, |
| | ) |
| | from sagemaker.mxnet.estimator import MXNet |
| | from sagemaker.pytorch.estimator import PyTorch |
| | from sagemaker.tensorflow.estimator import TensorFlow |
| | from sagemaker.xgboost.estimator import XGBoost |
| | from tests.integ import DATA_DIR, TRAINING_DEFAULT_TIMEOUT_MINUTES |
| | from tests.integ.retry import retries |
| | from tests.integ.timeout import timeout |
| |
|
| | _NON_ERROR_TERMINAL_RULE_JOB_STATUSES = ["NoIssuesFound", "IssuesFound", "Stopped"] |
| |
|
| | CUSTOM_RULE_REPO_WITH_PLACEHOLDERS = ( |
| | "{}.dkr.ecr.{}.amazonaws.com/sagemaker-debugger-rule-evaluator:latest" |
| | ) |
| |
|
| | CUSTOM_RULE_CONTAINERS_ACCOUNTS_MAP = { |
| | "ap-east-1": "645844755771", |
| | "ap-northeast-1": "670969264625", |
| | "ap-northeast-2": "326368420253", |
| | "ap-south-1": "552407032007", |
| | "ap-southeast-1": "631532610101", |
| | "ap-southeast-2": "445670767460", |
| | "ca-central-1": "105842248657", |
| | "eu-central-1": "691764027602", |
| | "eu-north-1": "091235270104", |
| | "eu-west-1": "606966180310", |
| | "eu-west-2": "074613877050", |
| | "eu-west-3": "224335253976", |
| | "me-south-1": "050406412588", |
| | "sa-east-1": "466516958431", |
| | "us-east-1": "864354269164", |
| | "us-east-2": "840043622174", |
| | "us-west-1": "952348334681", |
| | "us-west-2": "759209512951", |
| | "cn-north-1": "617202126805", |
| | "cn-northwest-1": "658559488188", |
| | } |
| |
|
| | |
| |
|
| |
|
| | @pytest.fixture |
| | def actions(): |
| | return rule_configs.ActionList( |
| | rule_configs.StopTraining(), |
| | rule_configs.Email("abc@abc.com"), |
| | rule_configs.SMS("+01234567890"), |
| | ) |
| |
|
| |
|
| | def test_mxnet_with_rules( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [ |
| | Rule.sagemaker(rule_configs.vanishing_gradient()), |
| | Rule.sagemaker( |
| | base_config=rule_configs.all_zero(), rule_parameters={"tensor_regex": ".*"} |
| | ), |
| | Rule.sagemaker(rule_configs.loss_not_decreasing()), |
| | ] |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 0 |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleParameters"][ |
| | "rule_to_invoke" |
| | ] |
| | == rule.rule_parameters["rule_to_invoke"] |
| | ) |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_rules_and_actions( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | actions, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [ |
| | Rule.sagemaker(rule_configs.vanishing_gradient(), actions=actions), |
| | Rule.sagemaker( |
| | base_config=rule_configs.all_zero(), |
| | rule_parameters={"tensor_regex": ".*"}, |
| | actions=actions, |
| | ), |
| | Rule.sagemaker(rule_configs.loss_not_decreasing(), actions=actions), |
| | ] |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 0 |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleParameters"][ |
| | "rule_to_invoke" |
| | ] |
| | == rule.rule_parameters["rule_to_invoke"] |
| | ) |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_custom_rule( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [_get_custom_rule(sagemaker_session)] |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 30 |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_custom_rule_and_actions( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | actions, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [_get_custom_rule(sagemaker_session, actions)] |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 30 |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_debugger_hook_config( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | debugger_hook_config = DebuggerHookConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensors" |
| | ) |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | debugger_hook_config=debugger_hook_config, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| | assert job_description["DebugHookConfig"] == debugger_hook_config._to_request_dict() |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_debug_hook_disabled_with_checkpointing( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | s3_output_path = os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()) |
| | ) |
| | debugger_hook_config = DebuggerHookConfig( |
| | s3_output_path=os.path.join(s3_output_path, "tensors") |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| |
|
| | |
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | debugger_hook_config=debugger_hook_config, |
| | checkpoint_local_path="/opt/ml/checkpoints", |
| | checkpoint_s3_uri=os.path.join(s3_output_path, "checkpoints"), |
| | ) |
| | mx._prepare_for_training() |
| |
|
| | |
| | assert mx.debugger_hook_config is not None |
| |
|
| | |
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=2, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | debugger_hook_config=debugger_hook_config, |
| | checkpoint_local_path="/opt/ml/checkpoints", |
| | checkpoint_s3_uri=os.path.join(s3_output_path, "checkpoints"), |
| | ) |
| | mx._prepare_for_training() |
| | |
| | assert mx.debugger_hook_config is False |
| |
|
| | |
| | pt = PyTorch( |
| | base_job_name="pytorch-smdataparallel-mnist", |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version="1.8.0", |
| | py_version="py36", |
| | instance_count=1, |
| | |
| | instance_type="ml.p3.16xlarge", |
| | sagemaker_session=sagemaker_session, |
| | |
| | distribution={"smdistributed": {"dataparallel": {"enabled": True}}}, |
| | checkpoint_local_path="/opt/ml/checkpoints", |
| | checkpoint_s3_uri=os.path.join(s3_output_path, "checkpoints"), |
| | ) |
| | pt._prepare_for_training() |
| | |
| | assert pt.debugger_hook_config is False |
| |
|
| | |
| | tf = TensorFlow( |
| | base_job_name="tf-smdataparallel-mnist", |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version="2.4.1", |
| | py_version="py36", |
| | instance_count=1, |
| | |
| | instance_type="ml.p3.16xlarge", |
| | sagemaker_session=sagemaker_session, |
| | |
| | distribution={"smdistributed": {"modelparallel": {"enabled": True}}}, |
| | checkpoint_local_path="/opt/ml/checkpoints", |
| | checkpoint_s3_uri=os.path.join(s3_output_path, "checkpoints"), |
| | ) |
| | tf._prepare_for_training() |
| | |
| | assert tf.debugger_hook_config is False |
| |
|
| | |
| | xg = XGBoost( |
| | base_job_name="test_xgboost", |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version="1.2-1", |
| | py_version="py3", |
| | instance_count=2, |
| | |
| | instance_type="ml.p3.16xlarge", |
| | sagemaker_session=sagemaker_session, |
| | |
| | ) |
| | xg._prepare_for_training() |
| | |
| | assert xg.debugger_hook_config is not None |
| |
|
| |
|
| | def test_mxnet_with_rules_and_debugger_hook_config( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [ |
| | Rule.sagemaker(rule_configs.vanishing_gradient()), |
| | Rule.sagemaker( |
| | base_config=rule_configs.all_zero(), rule_parameters={"tensor_regex": ".*"} |
| | ), |
| | Rule.sagemaker(rule_configs.loss_not_decreasing()), |
| | ] |
| | debugger_hook_config = DebuggerHookConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensors" |
| | ) |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | debugger_hook_config=debugger_hook_config, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 0 |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleParameters"][ |
| | "rule_to_invoke" |
| | ] |
| | == rule.rule_parameters["rule_to_invoke"] |
| | ) |
| | assert job_description["DebugHookConfig"] == debugger_hook_config._to_request_dict() |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_custom_rule_and_debugger_hook_config( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [_get_custom_rule(sagemaker_session)] |
| | debugger_hook_config = DebuggerHookConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensors" |
| | ) |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | debugger_hook_config=debugger_hook_config, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugRuleConfigurations"][index]["VolumeSizeInGB"] == 30 |
| | assert job_description["DebugHookConfig"] == debugger_hook_config._to_request_dict() |
| |
|
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_tensorboard_output_config( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | tensorboard_output_config = TensorBoardOutputConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensorboard" |
| | ) |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | tensorboard_output_config=tensorboard_output_config, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| | assert ( |
| | job_description["TensorBoardOutputConfig"] |
| | == tensorboard_output_config._to_request_dict() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_all_rules_and_configs( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | rules = [ |
| | Rule.sagemaker(rule_configs.vanishing_gradient()), |
| | Rule.sagemaker( |
| | base_config=rule_configs.all_zero(), rule_parameters={"tensor_regex": ".*"} |
| | ), |
| | Rule.sagemaker(rule_configs.loss_not_decreasing()), |
| | _get_custom_rule(sagemaker_session), |
| | ] |
| | debugger_hook_config = DebuggerHookConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensors" |
| | ) |
| | ) |
| | tensorboard_output_config = TensorBoardOutputConfig( |
| | s3_output_path=os.path.join( |
| | "s3://", sagemaker_session.default_bucket(), str(uuid.uuid4()), "tensorboard" |
| | ) |
| | ) |
| |
|
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | rules=rules, |
| | debugger_hook_config=debugger_hook_config, |
| | tensorboard_output_config=tensorboard_output_config, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | for index, rule in enumerate(rules): |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleConfigurationName"] |
| | == rule.name |
| | ) |
| | assert ( |
| | job_description["DebugRuleConfigurations"][index]["RuleEvaluatorImage"] |
| | == rule.image_uri |
| | ) |
| | assert job_description["DebugHookConfig"] == debugger_hook_config._to_request_dict() |
| | assert ( |
| | job_description["TensorBoardOutputConfig"] |
| | == tensorboard_output_config._to_request_dict() |
| | ) |
| | assert ( |
| | _get_rule_evaluation_statuses(job_description) |
| | == mx.latest_training_job.rule_job_summary() |
| | ) |
| |
|
| | _wait_and_assert_that_no_rule_jobs_errored(training_job=mx.latest_training_job) |
| |
|
| |
|
| | def test_mxnet_with_debugger_hook_config_disabled( |
| | sagemaker_session, |
| | mxnet_training_latest_version, |
| | mxnet_training_latest_py_version, |
| | cpu_instance_type, |
| | ): |
| | with timeout(minutes=TRAINING_DEFAULT_TIMEOUT_MINUTES): |
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "mnist_gluon.py") |
| | data_path = os.path.join(DATA_DIR, "mxnet_mnist") |
| |
|
| | mx = MXNet( |
| | entry_point=script_path, |
| | role="SageMakerRole", |
| | framework_version=mxnet_training_latest_version, |
| | py_version=mxnet_training_latest_py_version, |
| | instance_count=1, |
| | instance_type=cpu_instance_type, |
| | sagemaker_session=sagemaker_session, |
| | debugger_hook_config=False, |
| | ) |
| |
|
| | train_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "train"), key_prefix="integ-test-data/mxnet_mnist/train" |
| | ) |
| | test_input = mx.sagemaker_session.upload_data( |
| | path=os.path.join(data_path, "test"), key_prefix="integ-test-data/mxnet_mnist/test" |
| | ) |
| |
|
| | mx.fit({"train": train_input, "test": test_input}) |
| |
|
| | job_description = mx.latest_training_job.describe() |
| |
|
| | assert job_description.get("DebugHookConfig") is None |
| | assert job_description.get("Environment", {}).get(DEBUGGER_FLAG) == "0" |
| |
|
| |
|
| | def _get_rule_evaluation_statuses(job_description): |
| | debug_rule_eval_statuses = job_description.get("DebugRuleEvaluationStatuses") or [] |
| | profiler_rule_eval_statuses = job_description.get("ProfilerRuleEvaluationStatuses") or [] |
| | return debug_rule_eval_statuses + profiler_rule_eval_statuses |
| |
|
| |
|
| | def _get_custom_rule(session, actions=None): |
| | script_path = os.path.join(DATA_DIR, "mxnet_mnist", "my_custom_rule.py") |
| |
|
| | return Rule.custom( |
| | name="test-custom-rule", |
| | source=script_path, |
| | rule_to_invoke="CustomGradientRule", |
| | instance_type="ml.m5.xlarge", |
| | volume_size_in_gb=30, |
| | image_uri=CUSTOM_RULE_REPO_WITH_PLACEHOLDERS.format( |
| | CUSTOM_RULE_CONTAINERS_ACCOUNTS_MAP[session.boto_region_name], session.boto_region_name |
| | ), |
| | actions=actions, |
| | ) |
| |
|
| |
|
| | def _wait_and_assert_that_no_rule_jobs_errored(training_job): |
| | |
| | |
| | |
| | for _ in retries( |
| | max_retry_count=120, |
| | exception_message_prefix="Waiting for all jobs to be in success status or any to be in error", |
| | seconds_to_sleep=10, |
| | ): |
| | job_description = training_job.describe() |
| | debug_rule_evaluation_statuses = job_description.get("DebugRuleEvaluationStatuses") |
| | if not debug_rule_evaluation_statuses: |
| | break |
| | incomplete_rule_job_found = False |
| | for debug_rule_evaluation_status in debug_rule_evaluation_statuses: |
| | assert debug_rule_evaluation_status["RuleEvaluationStatus"] != "Error" |
| | if ( |
| | debug_rule_evaluation_status["RuleEvaluationStatus"] |
| | not in _NON_ERROR_TERMINAL_RULE_JOB_STATUSES |
| | ): |
| | incomplete_rule_job_found = True |
| | if not incomplete_rule_job_found: |
| | break |
| |
|