PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::MachineLearning::MLModel; use Moose; has Algorithm => (is => 'ro', isa => 'Str'); has ComputeTime => (is => 'ro', isa => 'Int'); has CreatedAt => (is => 'ro', isa => 'Str'); has CreatedByIamUser => (is => 'ro', isa => 'Str'); has EndpointInfo => (is => 'ro', isa => 'Paws::MachineLearning::RealtimeEndpointInfo'); has FinishedAt => (is => 'ro', isa => 'Str'); has InputDataLocationS3 => (is => 'ro', isa => 'Str'); has LastUpdatedAt => (is => 'ro', isa => 'Str'); has Message => (is => 'ro', isa => 'Str'); has MLModelId => (is => 'ro', isa => 'Str'); has MLModelType => (is => 'ro', isa => 'Str'); has Name => (is => 'ro', isa => 'Str'); has ScoreThreshold => (is => 'ro', isa => 'Num'); has ScoreThresholdLastUpdatedAt => (is => 'ro', isa => 'Str'); has SizeInBytes => (is => 'ro', isa => 'Int'); has StartedAt => (is => 'ro', isa => 'Str'); has Status => (is => 'ro', isa => 'Str'); has TrainingDataSourceId => (is => 'ro', isa => 'Str'); has TrainingParameters => (is => 'ro', isa => 'Paws::MachineLearning::TrainingParameters'); 1; ### main pod documentation begin ### =head1 NAME Paws::MachineLearning::MLModel =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::MachineLearning::MLModel object: $service_obj->Method(Att1 => { Algorithm => $value, ..., TrainingParameters => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::MachineLearning::MLModel object: $result = $service_obj->Method(...); $result->Att1->Algorithm =head1 DESCRIPTION Represents the output of a C operation. The content consists of the detailed metadata and the current status of the C. =head1 ATTRIBUTES =head2 Algorithm => Str The algorithm used to train the C. The following algorithm is supported: =over =item * C -- Stochastic gradient descent. The goal of C is to minimize the gradient of the loss function. =back =head2 ComputeTime => Int =head2 CreatedAt => Str The time that the C was created. The time is expressed in epoch time. =head2 CreatedByIamUser => Str The AWS user account from which the C was created. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account. =head2 EndpointInfo => L The current endpoint of the C. =head2 FinishedAt => Str =head2 InputDataLocationS3 => Str The location of the data file or directory in Amazon Simple Storage Service (Amazon S3). =head2 LastUpdatedAt => Str The time of the most recent edit to the C. The time is expressed in epoch time. =head2 Message => Str A description of the most recent details about accessing the C. =head2 MLModelId => Str The ID assigned to the C at creation. =head2 MLModelType => Str Identifies the C category. The following are the available types: =over =item * C - Produces a numeric result. For example, "What price should a house be listed at?" =item * C - Produces one of two possible results. For example, "Is this a child-friendly web site?". =item * C - Produces one of several possible results. For example, "Is this a HIGH-, LOW-, or MEDIUM-risk trade?". =back =head2 Name => Str A user-supplied name or description of the C. =head2 ScoreThreshold => Num =head2 ScoreThresholdLastUpdatedAt => Str The time of the most recent edit to the C. The time is expressed in epoch time. =head2 SizeInBytes => Int =head2 StartedAt => Str =head2 Status => Str The current status of an C. This element can have one of the following values: =over =item * C - Amazon Machine Learning (Amazon ML) submitted a request to create an C. =item * C - The creation process is underway. =item * C - The request to create an C didn't run to completion. The model isn't usable. =item * C - The creation process completed successfully. =item * C - The C is marked as deleted. It isn't usable. =back =head2 TrainingDataSourceId => Str The ID of the training C. The C operation uses the C. =head2 TrainingParameters => L A list of the training parameters in the C. The list is implemented as a map of key-value pairs. The following is the current set of training parameters: =over =item * C - The maximum allowed size of the model. Depending on the input data, the size of the model might affect its performance. The value is an integer that ranges from C<100000> to C<2147483648>. The default value is C<33554432>. =item * C - The number of times that the training process traverses the observations to build the C. The value is an integer that ranges from C<1> to C<10000>. The default value is C<10>. =item * C - Whether Amazon ML shuffles the training data. Shuffling the data improves a model's ability to find the optimal solution for a variety of data types. The valid values are C and C. The default value is C. =item * C - The coefficient regularization L1 norm, which controls overfitting the data by penalizing large coefficients. This parameter tends to drive coefficients to zero, resulting in sparse feature set. If you use this parameter, start by specifying a small value, such as C<1.0E-08>. The value is a double that ranges from C<0> to C. The default is to not use L1 normalization. This parameter can't be used when C is specified. Use this parameter sparingly. =item * C - The coefficient regularization L2 norm, which controls overfitting the data by penalizing large coefficients. This tends to drive coefficients to small, nonzero values. If you use this parameter, start by specifying a small value, such as C<1.0E-08>. The value is a double that ranges from C<0> to C. The default is to not use L2 normalization. This parameter can't be used when C is specified. Use this parameter sparingly. =back =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut