interface HyperParameterSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnAlgorithm.HyperParameterSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnAlgorithm_HyperParameterSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnAlgorithm.HyperParameterSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnAlgorithm.HyperParameterSpecificationProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnAlgorithm » HyperParameterSpecificationProperty |
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 hyperParameterSpecificationProperty: sagemaker.CfnAlgorithm.HyperParameterSpecificationProperty = {
name: 'name',
type: 'type',
// the properties below are optional
defaultValue: 'defaultValue',
description: 'description',
isRequired: false,
isTunable: false,
range: {
categoricalParameterRangeSpecification: {
values: ['values'],
},
continuousParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
integerParameterRangeSpecification: {
maxValue: 'maxValue',
minValue: 'minValue',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| type | string | |
| default | string | |
| description? | string | |
| is | boolean | IResolvable | |
| is | boolean | IResolvable | |
| range? | IResolvable | Parameter |
name
Type:
string
type
Type:
string
defaultValue?
Type:
string
(optional)
description?
Type:
string
(optional)
isRequired?
Type:
boolean | IResolvable
(optional)
isTunable?
Type:
boolean | IResolvable
(optional)
range?
Type:
IResolvable | Parameter
(optional)

.NET
Go
Java
Python
TypeScript