@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class AlgorithmSpecification extends Object implements Serializable, Cloneable, StructuredPojo
Specifies the training algorithm to use in a CreateTrainingJob request.
For more information about algorithms provided by Amazon SageMaker, see Algorithms. For information about using your own algorithms, see Bring Your Own Algorithms .
Constructor and Description |
---|
AlgorithmSpecification() |
Modifier and Type | Method and Description |
---|---|
AlgorithmSpecification |
clone() |
boolean |
equals(Object obj) |
String |
getTrainingImage()
The registry path of the Docker image that contains the training algorithm.
|
String |
getTrainingInputMode()
The input mode that the algorithm supports.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setTrainingImage(String trainingImage)
The registry path of the Docker image that contains the training algorithm.
|
void |
setTrainingInputMode(String trainingInputMode)
The input mode that the algorithm supports.
|
String |
toString()
Returns a string representation of this object; useful for testing and debugging.
|
AlgorithmSpecification |
withTrainingImage(String trainingImage)
The registry path of the Docker image that contains the training algorithm.
|
AlgorithmSpecification |
withTrainingInputMode(String trainingInputMode)
The input mode that the algorithm supports.
|
AlgorithmSpecification |
withTrainingInputMode(TrainingInputMode trainingInputMode)
The input mode that the algorithm supports.
|
public void setTrainingImage(String trainingImage)
The registry path of the Docker image that contains the training algorithm. For information about using your own algorithms, see Docker Registry Paths for Algorithms Provided by Amazon SageMaker .
trainingImage
- The registry path of the Docker image that contains the training algorithm. For information about using
your own algorithms, see Docker Registry
Paths for Algorithms Provided by Amazon SageMaker .public String getTrainingImage()
The registry path of the Docker image that contains the training algorithm. For information about using your own algorithms, see Docker Registry Paths for Algorithms Provided by Amazon SageMaker .
public AlgorithmSpecification withTrainingImage(String trainingImage)
The registry path of the Docker image that contains the training algorithm. For information about using your own algorithms, see Docker Registry Paths for Algorithms Provided by Amazon SageMaker .
trainingImage
- The registry path of the Docker image that contains the training algorithm. For information about using
your own algorithms, see Docker Registry
Paths for Algorithms Provided by Amazon SageMaker .public void setTrainingInputMode(String trainingInputMode)
The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support, see Algorithms. If an algorithm supports the
File
input mode, Amazon SageMaker downloads the training data from S3 to the provisioned ML storage
Volume, and mounts the directory to docker volume for training container. If an algorithm supports the
Pipe
input mode, Amazon SageMaker streams data directly from S3 to the container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
trainingInputMode
- The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support,
see Algorithms. If an algorithm
supports the File
input mode, Amazon SageMaker downloads the training data from S3 to the
provisioned ML storage Volume, and mounts the directory to docker volume for training container. If an
algorithm supports the Pipe
input mode, Amazon SageMaker streams data directly from S3 to the
container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
TrainingInputMode
public String getTrainingInputMode()
The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support, see Algorithms. If an algorithm supports the
File
input mode, Amazon SageMaker downloads the training data from S3 to the provisioned ML storage
Volume, and mounts the directory to docker volume for training container. If an algorithm supports the
Pipe
input mode, Amazon SageMaker streams data directly from S3 to the container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
File
input mode, Amazon SageMaker downloads the training data from S3 to the
provisioned ML storage Volume, and mounts the directory to docker volume for training container. If an
algorithm supports the Pipe
input mode, Amazon SageMaker streams data directly from S3 to
the container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
TrainingInputMode
public AlgorithmSpecification withTrainingInputMode(String trainingInputMode)
The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support, see Algorithms. If an algorithm supports the
File
input mode, Amazon SageMaker downloads the training data from S3 to the provisioned ML storage
Volume, and mounts the directory to docker volume for training container. If an algorithm supports the
Pipe
input mode, Amazon SageMaker streams data directly from S3 to the container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
trainingInputMode
- The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support,
see Algorithms. If an algorithm
supports the File
input mode, Amazon SageMaker downloads the training data from S3 to the
provisioned ML storage Volume, and mounts the directory to docker volume for training container. If an
algorithm supports the Pipe
input mode, Amazon SageMaker streams data directly from S3 to the
container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
TrainingInputMode
public AlgorithmSpecification withTrainingInputMode(TrainingInputMode trainingInputMode)
The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support, see Algorithms. If an algorithm supports the
File
input mode, Amazon SageMaker downloads the training data from S3 to the provisioned ML storage
Volume, and mounts the directory to docker volume for training container. If an algorithm supports the
Pipe
input mode, Amazon SageMaker streams data directly from S3 to the container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
trainingInputMode
- The input mode that the algorithm supports. For the input modes that Amazon SageMaker algorithms support,
see Algorithms. If an algorithm
supports the File
input mode, Amazon SageMaker downloads the training data from S3 to the
provisioned ML storage Volume, and mounts the directory to docker volume for training container. If an
algorithm supports the Pipe
input mode, Amazon SageMaker streams data directly from S3 to the
container.
In File mode, make sure you provision ML storage volume with sufficient capacity to accomodate the data download from S3. In addition to the training data, the ML storage volume also stores the output model. The algorithm container use ML storage volume to also store intermediate information, if any.
For distributed algorithms using File mode, training data is distributed uniformly, and your training duration is predictable if the input data objects size is approximately same. Amazon SageMaker does not split the files any further for model training. If the object sizes are skewed, training won't be optimal as the data distribution is also skewed where one host in a training cluster is overloaded, thus becoming bottleneck in training.
TrainingInputMode
public String toString()
toString
in class Object
Object.toString()
public AlgorithmSpecification clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.