Skip to content

Commit 110bb60

Browse files
committed
fix param names
1 parent 542f9d1 commit 110bb60

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/integ/test_multidatamodel.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ def test_multi_data_model_deploy_trained_model_from_framework_estimator(
320320
def _mxnet_training_job(
321321
sagemaker_session,
322322
container_image,
323-
mxnet_full_version,
324-
mxnet_full_py_version,
323+
mxnet_version,
324+
py_version,
325325
cpu_instance_type,
326326
learning_rate,
327327
):
@@ -332,8 +332,8 @@ def _mxnet_training_job(
332332
mx = MXNet(
333333
entry_point=script_path,
334334
role=ROLE,
335-
framework_version=mxnet_full_version,
336-
py_version=mxnet_full_py_version,
335+
framework_version=mxnet_version,
336+
py_version=py_version,
337337
train_instance_count=1,
338338
train_instance_type=cpu_instance_type,
339339
sagemaker_session=sagemaker_session,

0 commit comments

Comments
 (0)