Values_2.TrainingJobSourceContains information about a training job.
type nonrec t = {trainingJobName : Values_1.TrainingJobName.t option;The name of the training job.
*)trainingJobArn : Values_1.TrainingJobArn.t option;The Amazon Resource Name (ARN) of the training job.
*)tuningJobArn : Values_1.HyperParameterTuningJobArn.t option;The Amazon Resource Name (ARN) of the associated hyperparameter tuning job if the training job was launched by a hyperparameter tuning job.
*)labelingJobArn : Values_1.LabelingJobArn.t option;The Amazon Resource Name (ARN) of the labeling job.
*)autoMLJobArn : Values_0.AutoMLJobArn.t option;The Amazon Resource Name (ARN) of the job.
*)modelArtifacts : Values_1.ModelArtifacts.t option;Information about the Amazon S3 location that is configured for storing model artifacts.
*)trainingJobStatus : Values_1.TrainingJobStatus.t option;The status of the training job. Training job statuses are: InProgress - The training is in progress. Completed - The training job has completed. Failed - The training job has failed. To see the reason for the failure, see the FailureReason field in the response to a DescribeTrainingJobResponse call. Stopping - The training job is stopping. Stopped - The training job has stopped. For more detailed information, see SecondaryStatus.
*)secondaryStatus : Values_1.SecondaryStatus.t option;Provides detailed information about the state of the training job. For detailed information about the secondary status of the training job, see StatusMessage under SecondaryStatusTransition. SageMaker provides primary statuses and secondary statuses that apply to each of them: InProgress Starting - Starting the training job. Downloading - An optional stage for algorithms that support File training input mode. It indicates that data is being downloaded to the ML storage volumes. Training - Training is in progress. Uploading - Training is complete and the model artifacts are being uploaded to the S3 location. Completed Completed - The training job has completed. Failed Failed - The training job has failed. The reason for the failure is returned in the FailureReason field of DescribeTrainingJobResponse. Stopped MaxRuntimeExceeded - The job stopped because it exceeded the maximum allowed runtime. Stopped - The training job has stopped. Stopping Stopping - Stopping the training job. Valid values for SecondaryStatus are subject to change. We no longer support the following secondary statuses: LaunchingMLInstances PreparingTrainingStack DownloadingTrainingImage
*)failureReason : Values_0.FailureReason.t option;If the training job failed, the reason it failed.
*)hyperParameters : Values_0.HyperParameters.t option;Algorithm-specific parameters.
*)algorithmSpecification : Values_0.AlgorithmSpecification.t option;Information about the algorithm used for training, and algorithm metadata.
*)roleArn : Values_0.RoleArn.t option;The Amazon Web Services Identity and Access Management (IAM) role configured for the training job.
*)inputDataConfig : Values_0.InputDataConfig.t option;An array of Channel objects that describes each data input channel. Your input must be in the same Amazon Web Services region as your training job.
*)outputDataConfig : Values_0.OutputDataConfig.t option;The S3 path where model artifacts that you configured when creating the job are stored. SageMaker creates subfolders for model artifacts.
*)resourceConfig : Values_0.ResourceConfig.t option;Resources, including ML compute instances and ML storage volumes, that are configured for model training.
*)warmPoolStatus : Values_1.WarmPoolStatus.t option;The status of the warm pool associated with the training job.
*)vpcConfig : Values_0.VpcConfig.t option;A VpcConfig object that specifies the VPC that this training job has access to. For more information, see Protect Training Jobs by Using an Amazon Virtual Private Cloud.
*)stoppingCondition : Values_0.StoppingCondition.t option;Specifies a limit to how long a model training job can run. It also specifies how long a managed Spot training job has to complete. When the job reaches the time limit, SageMaker ends the training job. Use this API to cap model training costs. To stop a job, SageMaker sends the algorithm the SIGTERM signal, which delays job termination for 120 seconds. Algorithms can use this 120-second window to save the model artifacts, so the results of training are not lost.
*)creationTime : Values_0.Timestamp.t option;A timestamp that indicates when the training job was created.
*)trainingStartTime : Values_0.Timestamp.t option;Indicates the time when the training job starts on training instances. You are billed for the time interval between this time and the value of TrainingEndTime. The start time in CloudWatch Logs might be later than this time. The difference is due to the time it takes to download the training data and to the size of the training container.
*)trainingEndTime : Values_0.Timestamp.t option;Indicates the time when the training job ends on training instances. You are billed for the time interval between the value of TrainingStartTime and this time. For successful jobs and stopped jobs, this is the time after model artifacts are uploaded. For failed jobs, this is the time when SageMaker detects a job failure.
*)lastModifiedTime : Values_0.Timestamp.t option;A timestamp that indicates when the status of the training job was last modified.
*)secondaryStatusTransitions : Values_1.SecondaryStatusTransitions.t option;A history of all of the secondary statuses that the training job has transitioned through.
*)finalMetricDataList : Values_1.FinalMetricDataList.t option;A list of final metric values that are set when the training job completes. Used only if the training job was configured to use metrics.
*)enableNetworkIsolation : Values_0.Boolean.t option;If the TrainingJob was created with network isolation, the value is set to true. If network isolation is enabled, nodes can't communicate beyond the VPC they run in.
*)enableInterContainerTrafficEncryption : Values_0.Boolean.t option;To encrypt all communications between ML compute instances in distributed training, choose True. Encryption provides greater security for distributed training, but training might take longer. How long it takes depends on the amount of communication between compute instances, especially if you use a deep learning algorithm in distributed training.
*)enableManagedSpotTraining : Values_0.Boolean.t option;When true, enables managed spot training using Amazon EC2 Spot instances to run training jobs instead of on-demand instances. For more information, see Managed Spot Training.
*)checkpointConfig : Values_0.CheckpointConfig.t option;trainingTimeInSeconds : Values_1.TrainingTimeInSeconds.t option;The training time in seconds.
*)billableTimeInSeconds : Values_0.BillableTimeInSeconds.t option;The billable time in seconds.
*)debugHookConfig : Values_1.DebugHookConfig.t option;experimentConfig : Values_1.ExperimentConfig.t option;debugRuleConfigurations : Values_1.DebugRuleConfigurations.t option;Information about the debug rule configuration.
*)tensorBoardOutputConfig : Values_1.TensorBoardOutputConfig.t option;debugRuleEvaluationStatuses : Values_1.DebugRuleEvaluationStatuses.t option;Information about the evaluation status of the rules for the training job.
*)outputModelPackageArn : Values_0.ModelPackageArn.t option;The output model package Amazon Resource Name (ARN) that contains model weights or checkpoint.
*)modelPackageConfig : Values_1.ModelPackageConfig.t option;The model package configuration.
*)profilerConfig : Values_1.ProfilerConfig.t option;environment : Values_1.TrainingEnvironmentMap.t option;The environment variables to set in the Docker container.
*)retryStrategy : Values_0.RetryStrategy.t option;The number of times to retry the job when the job fails due to an InternalServerError.
*)}val make :
?trainingJobName:??? ->
?trainingJobArn:??? ->
?tuningJobArn:??? ->
?labelingJobArn:??? ->
?autoMLJobArn:??? ->
?modelArtifacts:??? ->
?trainingJobStatus:??? ->
?secondaryStatus:??? ->
?failureReason:??? ->
?hyperParameters:??? ->
?algorithmSpecification:??? ->
?roleArn:??? ->
?inputDataConfig:??? ->
?outputDataConfig:??? ->
?resourceConfig:??? ->
?warmPoolStatus:??? ->
?vpcConfig:??? ->
?stoppingCondition:??? ->
?creationTime:??? ->
?trainingStartTime:??? ->
?trainingEndTime:??? ->
?lastModifiedTime:??? ->
?secondaryStatusTransitions:??? ->
?finalMetricDataList:??? ->
?enableNetworkIsolation:??? ->
?enableInterContainerTrafficEncryption:??? ->
?enableManagedSpotTraining:??? ->
?checkpointConfig:??? ->
?trainingTimeInSeconds:??? ->
?billableTimeInSeconds:??? ->
?debugHookConfig:??? ->
?experimentConfig:??? ->
?debugRuleConfigurations:??? ->
?tensorBoardOutputConfig:??? ->
?debugRuleEvaluationStatuses:??? ->
?outputModelPackageArn:??? ->
?modelPackageConfig:??? ->
?profilerConfig:??? ->
?environment:??? ->
?retryStrategy:??? ->
?tags:??? ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Values_0.Boolean.t
| `Enum of string
| `Integer of Values_1.TrainingTimeInSeconds.t
| `List of
[> `Structure of
(string
* [> `Enum of string
| `Float of Values_0.Float_.t
| `Integer of Values_0.OptionalVolumeSizeInGB.t
| `Map of
([> `String of Values_0.ConfigKey.t ]
* [> `String of Values_0.ConfigValue.t ])
list
| `String of string
| `Structure of
(string
* [> `Long of Awso.Import.Int64.t
| `Structure of
(string
* [> `Enum of string
| `List of [> `String of string ] list
| `String of string
| `Structure of
(string
* [> `Boolean of bool | `String of string ])
list ])
list ])
list
| `Timestamp of Values_0.Timestamp.t ])
list ]
list
| `Map of ([> `String of string ] * [> `String of string ]) list
| `String of Values_1.TrainingJobName.t
| `Structure of
(string
* [> `Boolean of bool
| `Enum of string
| `Integer of int
| `List of
[> `String of string
| `Structure of
(string
* [> `Enum of string
| `Integer of int
| `Map of
([> `String of string ] * [> `String of string ]) list
| `String of string ])
list ]
list
| `Long of Awso.Import.Int64.t
| `Map of
([> `String of Values_0.ConfigKey.t ]
* [> `String of Values_0.ConfigValue.t ])
list
| `String of Values_0.S3Uri.t
| `Structure of
(string
* [> `Boolean of bool
| `Enum of string
| `List of
[> `Structure of
(string * [> `Integer of int | `String of string ])
list ]
list
| `Structure of (string * [> `String of string ]) list ])
list ])
list
| `Timestamp of Values_0.Timestamp.t ])
list ]