@@ -87,7 +87,7 @@ def remote(
87
87
This decorator wraps the annotated code and runs it as a new SageMaker job synchronously
88
88
with the provided runtime settings.
89
89
90
- In case a parameter value is not set, the decorator first looks up the value from the SageMaker
90
+ If a parameter value is not set, the decorator first looks up the value from the SageMaker
91
91
configuration file. If no value is specified in the configuration file or no configuration file
92
92
is found, the decorator selects the default as specified below. For more information, see
93
93
`Configuring and using defaults with the SageMaker Python SDK <https://sagemaker.readthedocs.io/
@@ -475,7 +475,7 @@ def __init__(
475
475
):
476
476
"""Constructor for RemoteExecutor
477
477
478
- In case a parameter value is not set, the constructor first looks up the value from the
478
+ If a parameter value is not set, the constructor first looks up the value from the
479
479
SageMaker configuration file. If no value is specified in the configuration file or
480
480
no configuration file is found, the constructor selects the default as specified below.
481
481
For more information, see `Configuring and using defaults with the SageMaker Python SDK
@@ -1045,28 +1045,28 @@ def cancel(self) -> bool:
1045
1045
return True
1046
1046
1047
1047
def running (self ) -> bool :
1048
- """Check if the underlying sagemaker job is running.
1048
+ """Check if the underlying SageMaker job is running.
1049
1049
1050
1050
Returns:
1051
- ``True`` if the underlying sagemaker job is still running. ``False``, otherwise.
1051
+ ``True`` if the underlying SageMaker job is still running. ``False``, otherwise.
1052
1052
"""
1053
1053
with self ._condition :
1054
1054
return self ._state == _RUNNING
1055
1055
1056
1056
def cancelled (self ) -> bool :
1057
- """Check if the underlying sagemaker job was cancelled.
1057
+ """Check if the underlying SageMaker job was cancelled.
1058
1058
1059
1059
Returns:
1060
- ``True`` if the underlying sagemaker job was cancelled. ``False``, otherwise.
1060
+ ``True`` if the underlying SageMaker job was cancelled. ``False``, otherwise.
1061
1061
"""
1062
1062
with self ._condition :
1063
1063
return self ._state == _CANCELLED
1064
1064
1065
1065
def done (self ) -> bool :
1066
- """Check if the underlying sagemaker job is finished.
1066
+ """Check if the underlying SageMaker job is finished.
1067
1067
1068
1068
Returns:
1069
- ``True`` if the underlying sagemaker job finished running. ``False``, otherwise.
1069
+ ``True`` if the underlying SageMaker job finished running. ``False``, otherwise.
1070
1070
"""
1071
1071
with self ._condition :
1072
1072
if self ._state == _RUNNING and self ._job .describe ()["TrainingJobStatus" ] in [
0 commit comments