# NOTE: This code has been modified from AWS Sagemaker Python: https://github.com/aws/sagemaker-python-sdk/blob/master/tests/unit/test_mxnet.py
context("MXNet")
library(sagemaker.core)
library(sagemaker.common)
library(sagemaker.mlcore)
DATA_DIR = file.path(getwd(), "data")
SCRIPT_NAME = "dummy_script.py"
SCRIPT_PATH = file.path(DATA_DIR, SCRIPT_NAME)
TAR_FILE <- file.path(DATA_DIR, "test_tar.tgz")
BIN_OBJ <- readBin(con = TAR_FILE, what = "raw", n = file.size(TAR_FILE))
SERVING_SCRIPT_FILE = "another_dummy_script.py"
MODEL_DATA = "s3://some/data.tar.gz"
ENV = list("DUMMY_ENV_VAR"= "dummy_value")
TIMESTAMP = "2017-11-06-14:14:15.672"
TIME = 1507167947
BUCKET_NAME = "mybucket"
INSTANCE_COUNT = 1
INSTANCE_TYPE = "ml.c4.4xlarge"
ACCELERATOR_TYPE = "ml.eia.medium"
IMAGE = "520713654638.dkr.ecr.us-west-2.amazonaws.com/sagemaker-mxnet-serving:1.4.0-gpu-py3"
COMPILATION_JOB_NAME = "compilation-sagemaker-mxnet-%s"
FRAMEWORK = "mxnet"
ROLE = "Dummy"
REGION = "us-west-2"
GPU = "ml.p2.xlarge"
CPU = "ml.c4.xlarge"
CPU_C5 = "ml.c5.xlarge"
LAUNCH_PS_DISTRIBUTION_DICT = list("parameter_server"= list("enabled"= TRUE))
mxnet_inference_version = "1.4.0"
mxnet_inference_py_version = "py3"
neo_mxnet_version = "1.7"
EIA_IMAGE = "520713654638.dkr.ecr.us-west-2.amazonaws.com/sagemaker-mxnet-serving-eia:1.4.0-cpu-py3"
ENDPOINT_DESC = list("EndpointConfigName"="test-endpoint")
ENDPOINT_CONFIG_DESC = list("ProductionVariants"= list(list("ModelName"= "model-1"), list("ModelName"= "model-2")))
LIST_TAGS_RESULT = list("Tags"= list(list("Key"= "TagtestKey", "Value"= "TagtestValue")))
EXPERIMENT_CONFIG = list(
"ExperimentName"= "exp",
"TrialName"= "trial",
"TrialComponentDisplayName"= "tc"
)
sagemaker_session <- function(){
paws_mock <- Mock$new(name = "PawsCredentials", region_name = REGION)
sms <- Mock$new(
name = "Session",
paws_credentials = paws_mock,
paws_region_name=REGION,
config=NULL,
local_mode=FALSE,
s3 = NULL
)
s3_client <- Mock$new()
s3_client$.call_args("put_object")
s3_client$.call_args("get_object", list(Body = BIN_OBJ))
sagemaker_client <- Mock$new()
describe = list("ModelArtifacts"= list("S3ModelArtifacts"= "s3://m/m.tar.gz"))
describe_compilation = list("ModelArtifacts"= list("S3ModelArtifacts"= "s3://m/model_c5.tar.gz"))
sagemaker_client$.call_args("describe_training_job", describe)
sagemaker_client$.call_args("describe_endpoint", ENDPOINT_DESC)
sagemaker_client$.call_args("describe_endpoint_config", ENDPOINT_CONFIG_DESC)
sagemaker_client$.call_args("list_tags", LIST_TAGS_RESULT)
sms$.call_args("default_bucket", BUCKET_NAME)
sms$.call_args("expand_role", ROLE)
sms$.call_args("train", list(TrainingJobArn = "sagemaker-chainer-dummy"))
sms$.call_args("create_model", "sagemaker-chainer")
sms$.call_args("endpoint_from_production_variants", "sagemaker-chainer-endpoint")
sms$.call_args("logs_for_job")
sms$.call_args("wait_for_job")
sms$.call_args("wait_for_compilation_job", describe_compilation)
sms$.call_args("compile_model")
sms$s3 <- s3_client
sms$sagemaker <- sagemaker_client
return(sms)
}
.is_mms_version <- function(mxnet_version){
return (package_version(MXNetModel$public_fields$.LOWEST_MMS_VERSION) <= package_version(mxnet_version))
}
.get_train_args <- function(job_name){
return (list(
"image_uri"= IMAGE,
"input_mode"= "File",
"input_config"= list(
list(
"ChannelName"= "training",
"DataSource"= list(
"S3DataSource"= list(
"S3DataDistributionType"= "FullyReplicated",
"S3DataType"= "S3Prefix")
)
)
),
"role"= ROLE,
"job_name"= job_name,
"output_config"= list("S3OutputPath"= sprintf("s3://%s/", BUCKET_NAME)),
"resource_config"= list(
"InstanceType"= "ml.c4.4xlarge",
"InstanceCount"= 1,
"VolumeSizeInGB"= 30),
"hyperparameters"= list(
"sagemaker_program"= "dummy_script.py",
"sagemaker_container_log_level"= "INFO",
"sagemaker_job_name"= job_name,
"sagemaker_submit_directory"= sprintf(
"s3://%s/%s/source/sourcedir.tar.gz", BUCKET_NAME, job_name),
"sagemaker_region"= '"us-west-2"'),
"stop_condition"= list("MaxRuntimeInSeconds"= 24 * 60 * 60),
"tags"= NULL,
"vpc_config"= NULL,
"metric_definitions"= NULL,
"experiment_config"= NULL,
"debugger_hook_config"= list(
"CollectionConfigurations"= list(),
"S3OutputPath"= sprintf("s3://%s/",BUCKET_NAME))
)
)
}
.get_environment <- function(submit_directory, model_url, image_uri){
return (list(
"Image"= image_uri,
"Environment"= list(
"SAGEMAKER_PROGRAM"= "dummy_script.py",
"SAGEMAKER_SUBMIT_DIRECTORY"= submit_directory,
"SAGEMAKER_CONTAINER_LOG_LEVEL"= "20",
"SAGEMAKER_REGION"= "us-west-2"),
"ModelDataUrl"= model_url)
)
}
.create_compilation_job <- function(input_shape, output_location){
return (list(
"input_model_config"= list(
"S3Uri"= "s3://m/m.tar.gz",
"DataInputConfig"= input_shape,
"Framework"= toupper(FRAMEWORK)),
"output_model_config"= list("S3OutputLocation"= output_location, "TargetDevice"= "ml_c4"),
"role"= ROLE,
"stop_condition"= list("MaxRuntimeInSeconds"= 900),
"tags"= NULL)
)
}
.neo_inference_image <- function(mxnet_version){
return (sprintf("301217895009.dkr.ecr.us-west-2.amazonaws.com/sagemaker-inference-%s:%s-cpu-py3",
tolower(FRAMEWORK), mxnet_version)
)
}
test_that("test create model", {
container_log_level = 'INFO'
source_dir = "s3://mybucket/source"
base_job_name = "job"
sms = sagemaker_session()
mx = MXNet$new(
entry_point=SCRIPT_NAME,
source_dir=source_dir,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sms,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
container_log_level=container_log_level,
base_job_name=base_job_name
)
mx$fit(inputs="s3://mybucket/train", job_name="new_name")
model = mx$create_model()
expect_equal(model$sagemaker_session, sms)
expect_equal(model$framework_version, mxnet_inference_version)
expect_equal(model$py_version, mxnet_inference_py_version)
expect_equal(model$entry_point, SCRIPT_NAME)
expect_equal(model$role, ROLE)
expect_equal(model$container_log_level, "20")
expect_equal(model$source_dir, source_dir)
expect_null(model$image_uri)
expect_null(model$vpc_config)
})
test_that("test create model with optional params", {
container_log_level = 'INFO'
source_dir = "s3://mybucket/source"
sms = sagemaker_session()
mx = MXNet$new(
entry_point=SCRIPT_NAME,
source_dir=source_dir,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sms,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
container_log_level=container_log_level,
base_job_name="job"
)
mx$fit(inputs="s3://mybucket/train", job_name="new_name")
new_role = "role"
model_server_workers = 2
vpc_config = list("Subnets"= list("foo"), "SecurityGroupIds"= list("bar"))
model_name = "model-name"
model = mx$create_model(
role=new_role,
model_server_workers=model_server_workers,
vpc_config_override=vpc_config,
entry_point=SERVING_SCRIPT_FILE,
env=ENV,
name=model_name
)
expect_equal(model$role, new_role)
expect_equal(model$model_server_workers, model_server_workers)
expect_equal(model$vpc_config, vpc_config)
expect_equal(model$entry_point, SERVING_SCRIPT_FILE)
expect_equal(model$env, ENV)
expect_equal(model$name, model_name)
})
test_that("test create model with custom image", {
container_log_level = 'INFO'
source_dir = "s3://mybucket/source"
custom_image = "mxnet:2.0"
base_job_name = "job"
sms = sagemaker_session()
mx = MXNet$new(
entry_point=SCRIPT_NAME,
source_dir=source_dir,
framework_version="2.0",
py_version="py3",
role=ROLE,
sagemaker_session=sms,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
image_uri=custom_image,
container_log_level=container_log_level,
base_job_name=base_job_name
)
mx$fit(inputs="s3://mybucket/train", job_name="new_name")
model = mx$create_model()
expect_equal(model$sagemaker_session, sms)
expect_equal(model$image_uri, custom_image)
expect_equal(model$entry_point, SCRIPT_NAME)
expect_equal(model$role, ROLE)
expect_equal(model$container_log_level, "20")
expect_equal(model$source_dir, source_dir)
})
test_that("test mxnet", {
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version= mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
enable_sagemaker_metrics=FALSE
)
inputs = "s3://mybucket/train"
mx$fit(inputs=inputs, experiment_config=EXPERIMENT_CONFIG)
model = mx$create_model()
actual_environment = model$prepare_container_def(GPU)
submit_directory = actual_environment$Environment$SAGEMAKER_SUBMIT_DIRECTORY
model_url = actual_environment$ModelDataUrl
expected_environment = .get_environment(submit_directory, model_url, IMAGE)
expect_equal(actual_environment, expected_environment)
expect_true(grepl("cpu", model$prepare_container_def(CPU)$Image))
predictor = mx$deploy(1, GPU)
expect_true(inherits(predictor, "MXNetPredictor"))
})
test_that("test mxnet neo", {
sms = sagemaker_session()
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version="1.6",
py_version="py3",
role=ROLE,
sagemaker_session=sms,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
base_job_name="sagemaker-mxnet"
)
mx$fit()
input_shape = list("data"= list(100, 1, 28, 28))
output_location = "s3://neo-sdk-test"
compiled_model = mx$compile_model(
target_instance_family="ml_c4",
input_shape=input_shape,
output_path=output_location,
framework="mxnet",
framework_version=neo_mxnet_version
)
expected_compile_model_args = .create_compilation_job(input_shape, output_location)
actual_compile_model_args = sms$compile_model(..return_value=T)
expect_equal(expected_compile_model_args[-6], actual_compile_model_args[-6])
expect_true(grepl("^compilation-sagemaker-mxnet-[0-9-]+", actual_compile_model_args[[6]]))
expect_equal(compiled_model$image_uri, .neo_inference_image(neo_mxnet_version))
predictor = mx$deploy(1, CPU, use_compiled_model=TRUE)
expect_true(inherits(predictor, "MXNetPredictor"))
expect_error(mx$deploy(1, CPU_C5, use_compiled_model=TRUE))
# deploy without sagemaker Neo should continue to work
predictor = mx$deploy(1, CPU)
expect_true(inherits(predictor, "MXNetPredictor"))
})
test_that("test model", {
sms = sagemaker_session()
model = MXNetModel$new(
MODEL_DATA,
role=ROLE,
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
sagemaker_session=sms
)
predictor = model$deploy(1, GPU)
expect_true(inherits(predictor, "MXNetPredictor"))
})
test_that("test model mms version", {
model_kms_key = "kms-key"
model = MXNetModel$new(
MODEL_DATA,
role=ROLE,
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
sagemaker_session=sagemaker_session(),
name="test-mxnet-model",
model_kms_key=model_kms_key
)
predictor = model$deploy(1, GPU)
expect_equal(model$model_data, MODEL_DATA)
expect_equal(model$repacked_model_data, "s3://mybucket/test-mxnet-model/model.tar.gz")
expect_equal(model$uploaded_code, list(
s3_prefix="s3://mybucket/test-mxnet-model/model.tar.gz",
script_name=basename(SCRIPT_PATH))
)
expect_true(inherits(predictor, "MXNetPredictor"))
})
test_that("test model image accelerator", {
model = MXNetModel$new(
MODEL_DATA,
role=ROLE,
entry_point=SCRIPT_PATH,
framework_version="1.4.0",
py_version="py3",
sagemaker_session=sagemaker_session()
)
container_def = model$prepare_container_def(INSTANCE_TYPE, accelerator_type=ACCELERATOR_TYPE)
expect_equal(container_def$Image, EIA_IMAGE)
})
test_that("test model prepare container def no instance type or image", {
model = MXNetModel$new(
MODEL_DATA,
role=ROLE,
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
sagemaker_session=sagemaker_session()
)
expect_error(model$prepare_container_def())
})
test_that("test attach", {
training_image = sprintf("1.dkr.ecr.us-west-2.amazonaws.com/sagemaker-mxnet-%s-cpu:%s-cpu-%s",
mxnet_inference_py_version, mxnet_inference_version, mxnet_inference_py_version)
returned_job_description = list(
"AlgorithmSpecification"= list("TrainingInputMode"= "File", "TrainingImage"= training_image),
"HyperParameters"= list(
"sagemaker_submit_directory"= 's3://some/sourcedir.tar.gz',
"sagemaker_program"= 'iris-dnn-classifier.py',
"sagemaker_s3_uri_training"= '"sagemaker-3/integ-test-data/tf_iris"',
"sagemaker_container_log_level"= 'INFO',
"sagemaker_job_name"= 'neo',
"training_steps"= "100",
"sagemaker_region"= 'us-west-2'),
"RoleArn"= "arn:aws:iam::366:role/SageMakerRole",
"ResourceConfig"= list(
"VolumeSizeInGB"= 30,
"InstanceCount"= 1,
"InstanceType"= "ml.c4.xlarge"),
"StoppingCondition"= list("MaxRuntimeInSeconds"= 24 * 60 * 60),
"TrainingJobName"= "neo",
"TrainingJobStatus"= "Completed",
"TrainingJobArn"= "arn:aws:sagemaker:us-west-2:336:training-job/neo",
"OutputDataConfig"= list("KmsKeyId"= "", "S3OutputPath"= "s3://place/output/neo"),
"TrainingJobOutput"= list("S3TrainingJobOutput"= "s3://here/output.tar.gz")
)
sm <- sagemaker_session()
sm$sagemaker$.call_args("describe_training_job", returned_job_description)
mx = MXNet$new(
entry_point=SCRIPT_PATH,
role=ROLE,
sagemaker_session=sm,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version
)
estimator = mx$attach(training_job_name="neo", sagemaker_session=sm)
expect_equal(estimator$latest_training_job, "neo")
expect_equal(estimator$py_version, mxnet_inference_py_version)
expect_equal(estimator$framework_version, mxnet_inference_version)
expect_equal(estimator$role, "arn:aws:iam::366:role/SageMakerRole")
expect_equal(estimator$instance_count, 1)
expect_equal(estimator$max_run, 24 * 60 * 60)
expect_equal(estimator$input_mode, "File")
expect_equal(estimator$base_job_name, "neo")
expect_equal(estimator$output_path, "s3://place/output/neo")
expect_equal(estimator$output_kms_key, "")
expect_equal(estimator$hyperparameters()$training_steps, "100")
expect_equal(estimator$source_dir, "s3://some/sourcedir.tar.gz")
expect_equal(estimator$entry_point, "iris-dnn-classifier.py")
expect_equal(estimator$tags, LIST_TAGS_RESULT$Tags)
})
test_that("test attach old container", {
returned_job_description = list(
"AlgorithmSpecification"= list(
"TrainingInputMode"= "File",
"TrainingImage"= "1.dkr.ecr.us-west-2.amazonaws.com/sagemaker-mxnet-py2-cpu:1.0"),
"HyperParameters"= list(
"sagemaker_submit_directory"= 's3://some/sourcedir.tar.gz',
"sagemaker_program"= 'iris-dnn-classifier.py',
"sagemaker_s3_uri_training"= 'sagemaker-3/integ-test-data/tf_iris',
"sagemaker_container_log_level"= 'INFO',
"sagemaker_job_name"= 'neo',
"training_steps"= "100",
"sagemaker_region"= 'us-west-2'),
"RoleArn"= "arn:aws:iam::366:role/SageMakerRole",
"ResourceConfig"= list(
"VolumeSizeInGB"= 30,
"InstanceCount"= 1,
"InstanceType"= "ml.c4.xlarge"),
"StoppingCondition"= list("MaxRuntimeInSeconds"= 24 * 60 * 60),
"TrainingJobName"= "neo",
"TrainingJobStatus"= "Completed",
"TrainingJobArn"= "arn:aws:sagemaker:us-west-2:336:training-job/neo",
"OutputDataConfig"= list("KmsKeyId"= "", "S3OutputPath"= "s3://place/output/neo"),
"TrainingJobOutput"= list("S3TrainingJobOutput"= "s3://here/output.tar.gz")
)
sm <- sagemaker_session()
sm$sagemaker$.call_args("describe_training_job", returned_job_description)
mx = MXNet$new(
entry_point=SCRIPT_PATH,
role=ROLE,
sagemaker_session=sm,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version
)
estimator = mx$attach(training_job_name="neo", sagemaker_session=sm)
expect_equal(estimator$latest_training_job, "neo")
expect_equal(estimator$py_version, "py2")
expect_equal(estimator$framework_version, "0.12")
expect_equal(estimator$role, "arn:aws:iam::366:role/SageMakerRole")
expect_equal(estimator$instance_count, 1)
expect_equal(estimator$max_run, 24 * 60 * 60)
expect_equal(estimator$input_mode, "File")
expect_equal(estimator$base_job_name, "neo")
expect_equal(estimator$output_path, "s3://place/output/neo")
expect_equal(estimator$output_kms_key, "")
expect_equal(estimator$hyperparameters()$training_steps, "100")
expect_equal(estimator$source_dir, "s3://some/sourcedir.tar.gz")
expect_equal(estimator$entry_point, "iris-dnn-classifier.py")
})
test_that("test attach wrong framework", {
rjd = list(
"AlgorithmSpecification"= list(
"TrainingInputMode"= "File",
"TrainingImage"= "1.dkr.ecr.us-west-2.amazonaws.com/sagemaker-tensorflow-py2-cpu:1.0.4"),
"HyperParameters"= list(
"sagemaker_submit_directory"= 's3://some/sourcedir.tar.gz',
"checkpoint_path"= 's3://other/1508872349',
"sagemaker_program"= 'iris-dnn-classifier.py',
"sagemaker_container_log_level"= 'INFO',
"training_steps"= "100",
"sagemaker_region"= 'us-west-2'),
"RoleArn"= "arn:aws:iam::366:role/SageMakerRole",
"ResourceConfig"= list(
"VolumeSizeInGB"= 30,
"InstanceCount"= 1,
"InstanceType"= "ml.c4.xlarge"),
"StoppingCondition"= list("MaxRuntimeInSeconds"= 24 * 60 * 60),
"TrainingJobName"= "neo",
"TrainingJobStatus"= "Completed",
"TrainingJobArn"= "arn:aws:sagemaker:us-west-2:336:training-job/neo",
"OutputDataConfig"= list("KmsKeyId"= "", "S3OutputPath"= "s3://place/output/neo"),
"TrainingJobOutput"= list("S3TrainingJobOutput"= "s3://here/output.tar.gz")
)
sm <- sagemaker_session()
sm$sagemaker$.call_args("describe_training_job", rjd)
mx = MXNet$new(
entry_point=SCRIPT_PATH,
role=ROLE,
sagemaker_session=sm,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version
)
expect_error(mx$attach(training_job_name="neo", sagemaker_session=sm))
})
test_that("test attach custom image", {
training_image = "ubuntu:latest"
returned_job_description = list(
"AlgorithmSpecification"= list("TrainingInputMode"= "File", "TrainingImage"= training_image),
"HyperParameters"=list(
"sagemaker_submit_directory"= 's3://some/sourcedir.tar.gz',
"sagemaker_program"= 'iris-dnn-classifier.py',
"sagemaker_s3_uri_training"= 'sagemaker-3/integ-test-data/tf_iris',
"sagemaker_container_log_level"= 'INFO',
"sagemaker_job_name"= 'neo',
"training_steps"= "100",
"sagemaker_region"= 'us-west-2'),
"RoleArn"= "arn:aws:iam::366:role/SageMakerRole",
"ResourceConfig"= list(
"VolumeSizeInGB"= 30,
"InstanceCount"= 1,
"InstanceType"= "ml.c4.xlarge"),
"StoppingCondition"= list("MaxRuntimeInSeconds"= 24 * 60 * 60),
"TrainingJobName"= "neo",
"TrainingJobStatus"= "Completed",
"TrainingJobArn"= "arn:aws:sagemaker:us-west-2:336:training-job/neo",
"OutputDataConfig"= list("KmsKeyId"= "", "S3OutputPath"= "s3://place/output/neo"),
"TrainingJobOutput"= list("S3TrainingJobOutput"= "s3://here/output.tar.gz")
)
sm <- sagemaker_session()
sm$sagemaker$.call_args("describe_training_job", returned_job_description)
mx = MXNet$new(
entry_point=SCRIPT_PATH,
role=ROLE,
sagemaker_session=sm,
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version
)
estimator = mx$attach(training_job_name="neo", sagemaker_session=sm)
expect_equal(estimator$image_uri, training_image)
expect_equal(estimator$training_image_uri(), training_image)
})
test_that("test estimator script mode dont launch parameter server", {
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version="1.3.0",
py_version="py2",
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
distribution=list("parameter_server"= list("enabled"= FALSE))
)
expect_equal(mx$hyperparameters()[[mx$LAUNCH_MPI_ENV_NAME]], jsonlite::toJSON(FALSE, auto_unbox = T))
})
test_that("test estimator wrong version launch parameter server", {
expect_error(
MXNet$new(
entry_point=SCRIPT_PATH,
framework_version="1.2.1",
py_version="py2",
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
distribution=LAUNCH_PS_DISTRIBUTION_DICT),
"The distribution option is valid for only versions 1.3 and higher")
})
test_that("test estimator py2 warning", {
estimator = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version="1.2.1",
py_version="py2",
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE
)
expect_equal(estimator$py_version, "py2")
})
test_that("test model py2 warning", {
model = MXNetModel$new(
MODEL_DATA,
role=ROLE,
entry_point=SCRIPT_PATH,
framework_version="1.2.1",
py_version="py2",
sagemaker_session=sagemaker_session()
)
expect_equal(model$py_version, "py2")
})
test_that("test create model with custom hosting image", {
container_log_level = 'INFO'
custom_image = "mxnet:2.0"
custom_hosting_image = "mxnet_hosting:2.0"
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version="2.0",
py_version="py3",
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
image_uri=custom_image,
container_log_level=container_log_level,
base_job_name="job"
)
mx$fit(inputs="s3://mybucket/train", job_name="new_name")
model = mx$create_model(image_uri=custom_hosting_image)
expect_equal(model$image_uri, custom_hosting_image)
})
test_that("test mx enable sm metrics", {
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
enable_sagemaker_metrics=TRUE
)
expect_true(mx$enable_sagemaker_metrics)
})
test_that("test mx disable sm metrics", {
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE,
enable_sagemaker_metrics=FALSE
)
expect_false(mx$enable_sagemaker_metrics)
})
test_that("test mx enable sm metrics for version", {
mx_args = list(
entry_point=SCRIPT_PATH,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE)
for (fw_version in c("1.4.0", "1.6.0")){
mx = do.call(MXNet$new, c(mx_args, framework_version = fw_version))
if(package_version(fw_version) >= package_version("1.6.0"))
expect_true(mx$enable_sagemaker_metrics)
else
expect_null(mx$enable_sagemaker_metrics)
}
})
test_that("test custom image estimator deploy", {
custom_image = "mycustomimage:latest"
mx = MXNet$new(
entry_point=SCRIPT_PATH,
framework_version=mxnet_inference_version,
py_version=mxnet_inference_py_version,
role=ROLE,
sagemaker_session=sagemaker_session(),
instance_count=INSTANCE_COUNT,
instance_type=INSTANCE_TYPE
)
mx$fit(inputs="s3://mybucket/train", job_name="new_name")
model = mx$create_model(image_uri=custom_image)
expect_equal(model$image_uri, custom_image)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.