interface TrainingHyperParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnModelCardPropsMixin_TrainingHyperParameterProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnModelCardPropsMixin.TrainingHyperParameterProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const trainingHyperParameterProperty: sagemaker.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