@@ -98,7 +98,7 @@ def remote(
98
98
99
99
dependencies (str): Either the path to a dependencies file or the reserved keyword
100
100
``auto_capture``. Defaults to ``None``.
101
- If dependencies is provided, the value must be one of the following:
101
+ If `` dependencies`` is provided, the value must be one of the following:
102
102
103
103
* A path to a conda environment.yml file. The following conditions apply.
104
104
@@ -128,7 +128,7 @@ def remote(
128
128
``SAGEMAKER_JOB_CONDA_ENV`` must already exist in the image.
129
129
* If none of the above conditions are met, conda is not used. Dependencies are
130
130
installed at the system level, without any virtual environment, and the function
131
- annotated with the remote decorator is invoked using the python runtime available
131
+ annotated with the remote decorator is invoked using the Python runtime available
132
132
in the system path.
133
133
134
134
* The parameter dependencies is set to auto_capture. SageMaker will automatically
@@ -187,7 +187,7 @@ def remote(
187
187
instance_count (int): The number of instances to use. Defaults to 1.
188
188
189
189
instance_type (str): The Amazon Elastic Compute Cloud (EC2) instance type to use to run
190
- the SageMaker job. e.g. ml.c4.xlarge. If not provided, ValueError is thrown.
190
+ the SageMaker job. e.g. ml.c4.xlarge. If not provided, a ValueError is thrown.
191
191
192
192
job_conda_env (str): The name of the conda environment to activate during job's runtime.
193
193
Defaults to ``None``.
@@ -475,7 +475,7 @@ def __init__(
475
475
):
476
476
"""Constructor for RemoteExecutor
477
477
478
- Unless mentioned otherwise, the construcutor first looks up the value from the SageMaker
478
+ Unless mentioned otherwise, the constructor first looks up the value from the SageMaker
479
479
configuration file. If no value is specified in the configuration file or no configuration
480
480
file is found, the constructor selects the default as specified below. For more
481
481
information, see `Configuring and using defaults with the SageMaker Python SDK
@@ -487,7 +487,7 @@ def __init__(
487
487
488
488
dependencies (str): Either the path to a dependencies file or the reserved keyword
489
489
``auto_capture``. Defaults to ``None``.
490
- If dependencies is provided, the value must be one of the following:
490
+ If `` dependencies`` is provided, the value must be one of the following:
491
491
492
492
* A path to a conda environment.yml file. The following conditions apply.
493
493
@@ -517,7 +517,7 @@ def __init__(
517
517
``SAGEMAKER_JOB_CONDA_ENV`` must already exist in the image.
518
518
* If none of the above conditions are met, conda is not used. Dependencies are
519
519
installed at the system level, without any virtual environment, and the function
520
- annotated with the remote decorator is invoked using the python runtime available
520
+ annotated with the remote decorator is invoked using the Python runtime available
521
521
in the system path.
522
522
523
523
* The parameter dependencies is set to auto_capture. SageMaker will automatically
@@ -576,7 +576,7 @@ def __init__(
576
576
instance_count (int): The number of instances to use. Defaults to 1.
577
577
578
578
instance_type (str): The Amazon Elastic Compute Cloud (EC2) instance type to use to run
579
- the SageMaker job. e.g. ml.c4.xlarge. If not provided, ValueError is thrown.
579
+ the SageMaker job. e.g. ml.c4.xlarge. If not provided, a ValueError is thrown.
580
580
581
581
job_conda_env (str): The name of the conda environment to activate during job's runtime.
582
582
Defaults to ``None``.
0 commit comments