Skip to content

Documentation: instance_type no longer hidden in instance_count documentation #2615

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
Sep 17, 2021
Merged
Changes from all commits
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
5 changes: 2 additions & 3 deletions src/sagemaker/algorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,8 @@ def __init__(
access training data and model artifacts. After the endpoint
is created, the inference code might use the IAM role, if it
needs to access an AWS resource.
instance_count (int): Number of Amazon EC2 instances to
use for training. instance_type (str): Type of EC2
instance to use for training, for example, 'ml.c4.xlarge'.
instance_count (int): Number of Amazon EC2 instances to use for training.
instance_type (str): Type of EC2 instance to use for training, for example, 'ml.c4.xlarge'.
volume_size (int): Size in GB of the EBS volume to use for
storing input data during training (default: 30). Must be large enough to store
training data if File Mode is used (which is the default).
Expand Down