interface TrialComponentParameterValueProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTrialComponent.TrialComponentParameterValueProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTrialComponent_TrialComponentParameterValueProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTrialComponent.TrialComponentParameterValueProperty |
Python | aws_cdk.aws_sagemaker.CfnTrialComponent.TrialComponentParameterValueProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTrialComponent » TrialComponentParameterValueProperty |
The value of a hyperparameter.
Only one of StringValue or NumberValue can be specified.
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 trialComponentParameterValueProperty: sagemaker.CfnTrialComponent.TrialComponentParameterValueProperty = {
numberValue: 123,
stringValue: 'stringValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| number | number | The numeric value of a numeric hyperparameter. |
| string | string | The string value of a categorical hyperparameter. |
numberValue?
Type:
number
(optional)
The numeric value of a numeric hyperparameter.
stringValue?
Type:
string
(optional)
The string value of a categorical hyperparameter.

.NET
Go
Java
Python
TypeScript