Skip to content

Update doc for parameter source_dir #323

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 3, 2018
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/sagemaker/chainer/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ Optional arguments
The following are optional arguments. When you create a ``Chainer`` object, you can specify these as keyword arguments.

- ``source_dir`` Path (absolute or relative) to a directory with any
other training source code dependencies aside from the entry point
other training source code dependencies including the entry point
file. Structure within this directory will be preserved when training
on SageMaker.
- ``hyperparameters`` Hyperparameters that will be used for training.
Expand Down Expand Up @@ -574,7 +574,7 @@ The ChainerModel constructor takes the following arguments:
- ``entry_point (str):`` Path (absolute or relative) to the Python file
which should be executed as the entry point to model hosting.
- ``source_dir (str):`` Optional. Path (absolute or relative) to a
directory with any other training source code dependencies aside from
directory with any other training source code dependencies including
tne entry point file. Structure within this directory will be
preserved when training on SageMaker.
- ``enable_cloudwatch_metrics (boolean):`` Optional. If true, training
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/mxnet/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Optional arguments
The following are optional arguments. When you create an ``MXNet`` object, you can specify these as keyword arguments.

- ``source_dir`` Path (absolute or relative) to a directory with any
other training source code dependencies aside from the entry point
other training source code dependencies including the entry point
file. Structure within this directory will be preserved when training
on SageMaker.
- ``hyperparameters`` Hyperparameters that will be used for training.
Expand Down Expand Up @@ -540,7 +540,7 @@ The MXNetModel constructor takes the following arguments:
- ``entry_point (str):`` Path (absolute or relative) to the Python file
which should be executed as the entry point to model hosting.
- ``source_dir (str):`` Optional. Path (absolute or relative) to a
directory with any other training source code dependencies aside from
directory with any other training source code dependencies including
tne entry point file. Structure within this directory will be
preserved when training on SageMaker.
- ``enable_cloudwatch_metrics (boolean):`` Optional. If true, training
Expand Down
4 changes: 2 additions & 2 deletions src/sagemaker/pytorch/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ Optional arguments
The following are optional arguments. When you create a ``PyTorch`` object, you can specify these as keyword arguments.

- ``source_dir`` Path (absolute or relative) to a directory with any
other training source code dependencies aside from the entry point
other training source code dependencies including the entry point
file. Structure within this directory will be preserved when training
on SageMaker.
- ``hyperparameters`` Hyperparameters that will be used for training.
Expand Down Expand Up @@ -606,7 +606,7 @@ The PyTorchModel constructor takes the following arguments:
- ``entry_point:`` Path (absolute or relative) to the Python file
which should be executed as the entry point to model hosting.
- ``source_dir:`` Optional. Path (absolute or relative) to a
directory with any other training source code dependencies aside from
directory with any other training source code dependencies including
tne entry point file. Structure within this directory will be
preserved when training on SageMaker.
- ``enable_cloudwatch_metrics:`` Optional. If true, training
Expand Down
2 changes: 1 addition & 1 deletion src/sagemaker/tensorflow/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ The following are optional arguments. When you create a ``TensorFlow`` object,
you can specify these as keyword arguments.

- ``source_dir (str)`` Path (absolute or relative) to a directory with any
other training source code dependencies aside from the entry point
other training source code dependencies including the entry point
file. Structure within this directory will be preserved when training
on SageMaker.
- ``requirements_file (str)`` Path to a ``requirements.txt`` file. The path should
Expand Down