interface TrainingHyperParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnModelCard.TrainingHyperParameterProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnModelCard.TrainingHyperParameterProperty |
Python | aws_cdk.aws_sagemaker.CfnModelCard.TrainingHyperParameterProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnModelCard » TrainingHyperParameterProperty |
A hyper parameter that was configured in training the model.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as sagemaker from '@aws-cdk/aws-sagemaker';
const trainingHyperParameterProperty: sagemaker.CfnModelCard.TrainingHyperParameterProperty = {
name: 'name',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the hyper parameter. |
| value | string | The value specified for the hyper parameter. |
name
Type:
string
The name of the hyper parameter.
value
Type:
string
The value specified for the hyper parameter.

.NET
Java
Python
TypeScript