interface TrainingDetailsProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Sagemaker.CfnModelCard.TrainingDetailsProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_TrainingDetailsProperty |
![]() | software.amazon.awscdk.services.sagemaker.CfnModelCard.TrainingDetailsProperty |
![]() | aws_cdk.aws_sagemaker.CfnModelCard.TrainingDetailsProperty |
![]() | aws-cdk-lib » aws_sagemaker » CfnModelCard » TrainingDetailsProperty |
The training details of the model.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const trainingDetailsProperty: sagemaker.CfnModelCard.TrainingDetailsProperty = {
objectiveFunction: {
function: {
condition: 'condition',
facet: 'facet',
function: 'function',
},
notes: 'notes',
},
trainingJobDetails: {
hyperParameters: [{
name: 'name',
value: 'value',
}],
trainingArn: 'trainingArn',
trainingDatasets: ['trainingDatasets'],
trainingEnvironment: {
containerImage: ['containerImage'],
},
trainingMetrics: [{
name: 'name',
value: 123,
// the properties below are optional
notes: 'notes',
}],
userProvidedHyperParameters: [{
name: 'name',
value: 'value',
}],
userProvidedTrainingMetrics: [{
name: 'name',
value: 123,
// the properties below are optional
notes: 'notes',
}],
},
trainingObservations: 'trainingObservations',
};
Properties
Name | Type | Description |
---|---|---|
objective | IResolvable | Objective | The function that is optimized during model training. |
training | IResolvable | Training | Details about any associated training jobs. |
training | string | Any observations about training. |
objectiveFunction?
Type:
IResolvable
|
Objective
(optional)
The function that is optimized during model training.
trainingJobDetails?
Type:
IResolvable
|
Training
(optional)
Details about any associated training jobs.
trainingObservations?
Type:
string
(optional)
Any observations about training.