You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- ``hyperparameters (dict[str, ANY])`` Hyperparameters that will be used for training.
956
-
Will be made accessible as command line arguments.
957
-
- ``train_volume_size (int)`` Size in GB of the EBS volume to use for storing
958
-
input data during training. Must be large enough to the store training
959
-
data.
960
-
- ``train_max_run (int)`` Timeout in seconds for training, after which Amazon
961
-
SageMaker terminates the job regardless of its current status.
962
-
- ``output_path (str)`` S3 location where you want the training result (model
963
-
artifacts and optional output files) saved. If not specified, results
964
-
are stored to a default bucket. If the bucket with the specific name
965
-
does not exist, the estimator creates the bucket during the ``fit``
966
-
method execution.
967
-
- ``output_kms_key`` Optional KMS key ID to optionally encrypt training
968
-
output with.
969
-
- ``base_job_name`` Name to assign for the training job that the ``fit``
970
-
method launches. If not specified, the estimator generates a default
971
-
job name, based on the training image name and current timestamp.
972
-
- ``image_name`` An alternative docker image to use for training and
973
-
serving. If specified, the estimator will use this image for training and
974
-
hosting, instead of selecting the appropriate SageMaker official image based on
975
-
``framework_version`` and ``py_version``. Refer to: `SageMaker TensorFlow Docker containers <https://github.com/aws/sagemaker-python-sdk/tree/master/src/sagemaker/tensorflow#sagemaker-tensorflow-docker-containers>`_ for details on what the official images support
976
-
and where to find the source code to build your custom image.
977
-
- ``script_mode (bool)`` Whether to use Script Mode or not. Script mode is the only available training mode in Python 3,
978
-
setting ``py_version`` to ``py3`` automatically sets ``script_mode`` to True.
979
-
- ``model_dir (str)`` Location where model data, checkpoint data, and TensorBoard checkpoints should be saved during training.
980
-
If not specified a S3 location will be generated under the training job's default bucket. And ``model_dir`` will be
981
-
passed in your training script as one of the command line arguments.
982
-
- ``distributions (dict)`` Configure your distribution strategy with this argument.
916
+
For information about the different TensorFlow-related classes in the SageMaker Python SDK, see https://sagemaker.readthedocs.io/en/stable/sagemaker.tensorflow.html.
0 commit comments