diff --git a/src/sagemaker/chainer/estimator.py b/src/sagemaker/chainer/estimator.py index 0709087d64..19016447f8 100644 --- a/src/sagemaker/chainer/estimator.py +++ b/src/sagemaker/chainer/estimator.py @@ -105,9 +105,8 @@ def __init__( py_version (str): Python version you want to use for executing your model training code (default: 'py2'). One of 'py2' or 'py3'. framework_version (str): Chainer version you want to use for - executing your model training code. List of supported versions - https://github.com/aws/sagemaker-python-sdk#chainer-sagemaker-estimators. - If not specified, this will default to 4.1. + executing your model training code. If not specified, this will + default to 4.1. image_name (str): If specified, the estimator will use this image for training and hosting, instead of selecting the appropriate SageMaker official image based on framework_version and diff --git a/src/sagemaker/pytorch/estimator.py b/src/sagemaker/pytorch/estimator.py index 4a388acbee..0ba66b00d8 100644 --- a/src/sagemaker/pytorch/estimator.py +++ b/src/sagemaker/pytorch/estimator.py @@ -83,9 +83,8 @@ def __init__( py_version (str): Python version you want to use for executing your model training code (default: 'py3'). One of 'py2' or 'py3'. framework_version (str): PyTorch version you want to use for - executing your model training code. List of supported versions - https://github.com/aws/sagemaker-python-sdk#pytorch-sagemaker-estimators. - If not specified, this will default to 0.4. + executing your model training code. If not specified, this will default + to 0.4. image_name (str): If specified, the estimator will use this image for training and hosting, instead of selecting the appropriate SageMaker official image based on framework_version and diff --git a/src/sagemaker/s3.py b/src/sagemaker/s3.py index b710fdbe71..3c92aee946 100644 --- a/src/sagemaker/s3.py +++ b/src/sagemaker/s3.py @@ -57,8 +57,9 @@ def upload(local_path, desired_s3_uri, kms_key=None, session=None): """Static method that uploads a given file or directory to S3. Args: - local_path (str): A local path to a file or directory. - desired_s3_uri (str): The desired S3 uri to upload to. + local_path (str): Path (absolute or relative) of local file or directory to upload. + desired_s3_uri (str): The desired S3 location to upload to. It is the prefix to + which the local filename will be added. kms_key (str): The KMS key to use to encrypt the files. session (sagemaker.session.Session): Session object which manages interactions with Amazon SageMaker APIs and any other diff --git a/src/sagemaker/sklearn/estimator.py b/src/sagemaker/sklearn/estimator.py index e0fc4f76b9..4e6a958d6b 100644 --- a/src/sagemaker/sklearn/estimator.py +++ b/src/sagemaker/sklearn/estimator.py @@ -68,8 +68,7 @@ def __init__( If ``source_dir`` is specified, then ``entry_point`` must point to a file located at the root of ``source_dir``. framework_version (str): Scikit-learn version you want to use for - executing your model training code. List of supported versions - https://github.com/aws/sagemaker-python-sdk#sklearn-sagemaker-estimators + executing your model training code. source_dir (str): Path (absolute, relative or an S3 URI) to a directory with any other training source code dependencies aside from the entry point file (default: None). If ``source_dir`` is an S3 URI, it must diff --git a/src/sagemaker/tensorflow/estimator.py b/src/sagemaker/tensorflow/estimator.py index 79ce217676..c29daf9f69 100644 --- a/src/sagemaker/tensorflow/estimator.py +++ b/src/sagemaker/tensorflow/estimator.py @@ -237,9 +237,7 @@ def __init__( py_version (str): Python version you want to use for executing your model training code (default: 'py2'). framework_version (str): TensorFlow version you want to use for executing your model - training code. List of supported versions - https://github.com/aws/sagemaker-python-sdk#tensorflow-sagemaker-estimators. - If not specified, this will default to 1.11. + training code. If not specified, this will default to 1.11. model_dir (str): S3 location where the checkpoint data and models can be exported to during training (default: None). It will be passed in the training script as one of the command line arguments. If not specified, one is provided based on diff --git a/src/sagemaker/xgboost/estimator.py b/src/sagemaker/xgboost/estimator.py index 134235d829..c6b0b5a95a 100644 --- a/src/sagemaker/xgboost/estimator.py +++ b/src/sagemaker/xgboost/estimator.py @@ -73,8 +73,7 @@ def __init__( be executed as the entry point to training. If ``source_dir`` is specified, then ``entry_point`` must point to a file located at the root of ``source_dir``. framework_version (str): XGBoost version you want to use for executing your model - training code. List of supported versions - https://github.com/aws/sagemaker-python-sdk#xgboost-sagemaker-estimators + training code. source_dir (str): Path (absolute, relative or an S3 URI) to a directory with any other training source code dependencies aside from the entry point file (default: None). If ``source_dir`` is an S3 URI, it must