Skip to content

Commit fd84b53

Browse files
committed
fix: addessed changes
1 parent 3dac1b5 commit fd84b53

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/sagemaker/session.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -275,8 +275,6 @@ def download_data(self, path, bucket, key_prefix="", extra_args=None):
275275
download operation. Please refer to the ExtraArgs parameter in the boto3
276276
documentation here:
277277
https://boto3.amazonaws.com/v1/documentation/api/latest/guide/s3-example-download-file.html
278-
279-
Returns:
280278
"""
281279
# Initialize the S3 client.
282280
if self.s3_client is None:
@@ -1563,8 +1561,6 @@ def auto_ml(
15631561
definitions. If True, AutoML.list_candidates() cannot be called. Default: False.
15641562
tags ([dict[str,str]]): A list of dictionaries containing key-value
15651563
pairs.
1566-
1567-
Returns:
15681564
"""
15691565
auto_ml_job_request = {
15701566
"AutoMLJobName": job_name,
@@ -2791,6 +2787,7 @@ def describe_model(self, name):
27912787
27922788
Args:
27932789
name (str): The name of the SageMaker model.
2790+
27942791
Returns:
27952792
dict: A dictionary response with the model description.
27962793
"""
@@ -2878,11 +2875,12 @@ def create_endpoint_config_from_existing(
28782875
):
28792876
"""Create an Amazon SageMaker endpoint configuration from an existing one.
28802877
2881-
IT also updates any values that were passed in.
2878+
It also updates any values that were passed in.
28822879
The endpoint configuration identifies the Amazon SageMaker model (created using the
28832880
``CreateModel`` API) and the hardware configuration on which to deploy the model. Provide
28842881
this endpoint configuration to the ``CreateEndpoint`` API, which then launches the
28852882
hardware and deploys the model.
2883+
28862884
Args:
28872885
new_config_name (str): Name of the Amazon SageMaker endpoint configuration to create.
28882886
existing_config_name (str): Name of the existing Amazon SageMaker endpoint

0 commit comments

Comments
 (0)