![]() |
![]()
| ![]() |
![]()
NAMEPaws::MachineLearning::CreateMLModel - Arguments for method CreateMLModel on Paws::MachineLearning DESCRIPTIONThis class represents the parameters used for calling the method CreateMLModel on the Amazon Machine Learning service. Use the attributes of this class as arguments to method CreateMLModel. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateMLModel. SYNOPSISmy $machinelearning = Paws->service('MachineLearning'); my $CreateMLModelOutput = $machinelearning->CreateMLModel( MLModelId => 'MyEntityId', MLModelType => 'REGRESSION', TrainingDataSourceId => 'MyEntityId', MLModelName => 'MyEntityName', # OPTIONAL Parameters => { 'MyStringType' => 'MyStringType', }, # OPTIONAL Recipe => 'MyRecipe', # OPTIONAL RecipeUri => 'MyS3Url', # OPTIONAL ); # Results: my $MLModelId = $CreateMLModelOutput->MLModelId; # Returns a L<Paws::MachineLearning::CreateMLModelOutput> object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/machinelearning/CreateMLModel> ATTRIBUTESREQUIRED MLModelId => StrA user-supplied ID that uniquely identifies the "MLModel". MLModelName => StrA user-supplied name or description of the "MLModel". REQUIRED MLModelType => StrThe category of supervised learning that this "MLModel" will address. Choose from the following types:
For more information, see the Amazon Machine Learning Developer Guide (https://docs.aws.amazon.com/machine-learning/latest/dg). Valid values are: "REGRESSION", "BINARY", "MULTICLASS" Parameters => Paws::MachineLearning::TrainingParametersA list of the training parameters in the "MLModel". The list is implemented as a map of key-value pairs. The following is the current set of training parameters:
Recipe => StrThe data recipe for creating the "MLModel". You must specify either the recipe or its URI. If you don't specify a recipe or its URI, Amazon ML creates a default. RecipeUri => StrThe Amazon Simple Storage Service (Amazon S3) location and file name that contains the "MLModel" recipe. You must specify either the recipe or its URI. If you don't specify a recipe or its URI, Amazon ML creates a default. REQUIRED TrainingDataSourceId => StrThe "DataSource" that points to the training data. SEE ALSOThis class forms part of Paws, documenting arguments for method CreateMLModel in Paws::MachineLearning BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|