Skip to content

Commit 51fe929

Browse files
committed
update integ tests
1 parent ffd20f6 commit 51fe929

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/integ/test_mxnet_train.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def mxnet_training_job(sagemaker_session, mxnet_full_version):
3333

3434
mx = MXNet(entry_point=script_path, role='SageMakerRole', framework_version=mxnet_full_version,
3535
py_version=PYTHON_VERSION, train_instance_count=1, train_instance_type='ml.c4.xlarge',
36-
sagemaker_session=sagemaker_session)
36+
launch_parameter_server=True, sagemaker_session=sagemaker_session)
3737

3838
train_input = mx.sagemaker_session.upload_data(path=os.path.join(data_path, 'train'),
3939
key_prefix='integ-test-data/mxnet_mnist/train')
@@ -80,7 +80,7 @@ def test_async_fit(sagemaker_session):
8080

8181
mx = MXNet(entry_point=script_path, role='SageMakerRole', py_version=PYTHON_VERSION,
8282
train_instance_count=1, train_instance_type='ml.c4.xlarge',
83-
sagemaker_session=sagemaker_session)
83+
launch_parameter_server=True, sagemaker_session=sagemaker_session)
8484

8585
train_input = mx.sagemaker_session.upload_data(path=os.path.join(data_path, 'train'),
8686
key_prefix='integ-test-data/mxnet_mnist/train')

0 commit comments

Comments
 (0)