@Generated(value="com.amazonaws:aws-java-sdk-code-generator") public class CustomModelTransformParameters extends Object implements Serializable, Cloneable, StructuredPojo
Contains custom model transform parameters. See Use a trained model to generate new model artifacts.
Constructor and Description |
---|
CustomModelTransformParameters() |
Modifier and Type | Method and Description |
---|---|
CustomModelTransformParameters |
clone() |
boolean |
equals(Object obj) |
String |
getSourceS3DirectoryPath()
The path to the Amazon S3 location where the Python module implementing your model is located.
|
String |
getTransformEntryPointScript()
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment.
|
int |
hashCode() |
void |
marshall(ProtocolMarshaller protocolMarshaller)
Marshalls this structured data using the given
ProtocolMarshaller . |
void |
setSourceS3DirectoryPath(String sourceS3DirectoryPath)
The path to the Amazon S3 location where the Python module implementing your model is located.
|
void |
setTransformEntryPointScript(String transformEntryPointScript)
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment.
|
String |
toString()
Returns a string representation of this object.
|
CustomModelTransformParameters |
withSourceS3DirectoryPath(String sourceS3DirectoryPath)
The path to the Amazon S3 location where the Python module implementing your model is located.
|
CustomModelTransformParameters |
withTransformEntryPointScript(String transformEntryPointScript)
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment.
|
public void setSourceS3DirectoryPath(String sourceS3DirectoryPath)
The path to the Amazon S3 location where the Python module implementing your model is located. This must point to
a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a
model-hpo-configuration.json
file.
sourceS3DirectoryPath
- The path to the Amazon S3 location where the Python module implementing your model is located. This must
point to a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform
script, and a model-hpo-configuration.json
file.public String getSourceS3DirectoryPath()
The path to the Amazon S3 location where the Python module implementing your model is located. This must point to
a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a
model-hpo-configuration.json
file.
model-hpo-configuration.json
file.public CustomModelTransformParameters withSourceS3DirectoryPath(String sourceS3DirectoryPath)
The path to the Amazon S3 location where the Python module implementing your model is located. This must point to
a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform script, and a
model-hpo-configuration.json
file.
sourceS3DirectoryPath
- The path to the Amazon S3 location where the Python module implementing your model is located. This must
point to a valid existing Amazon S3 location that contains, at a minimum, a training script, a transform
script, and a model-hpo-configuration.json
file.public void setTransformEntryPointScript(String transformEntryPointScript)
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It
should be able to run with no command-line arguments. The default is transform.py
.
transformEntryPointScript
- The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment.
It should be able to run with no command-line arguments. The default is transform.py
.public String getTransformEntryPointScript()
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It
should be able to run with no command-line arguments. The default is transform.py
.
transform.py
.public CustomModelTransformParameters withTransformEntryPointScript(String transformEntryPointScript)
The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment. It
should be able to run with no command-line arguments. The default is transform.py
.
transformEntryPointScript
- The name of the entry point in your module of a script that should be run after the best model from the
hyperparameter search has been identified, to compute the model artifacts necessary for model deployment.
It should be able to run with no command-line arguments. The default is transform.py
.public String toString()
toString
in class Object
Object.toString()
public CustomModelTransformParameters clone()
public void marshall(ProtocolMarshaller protocolMarshaller)
StructuredPojo
ProtocolMarshaller
.marshall
in interface StructuredPojo
protocolMarshaller
- Implementation of ProtocolMarshaller
used to marshall this object's data.