interface TrainingHyperParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_TrainingHyperParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const trainingHyperParameterProperty: sagemaker_mixins.CfnModelCardPropsMixin.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
(optional)
The name of the hyper parameter.
value?
Type:
string
(optional)
The value specified for the hyper parameter.

.NET
Go
Java
Python
TypeScript