interface ObjectiveFunctionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.ObjectiveFunctionProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_ObjectiveFunctionProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.ObjectiveFunctionProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.ObjectiveFunctionProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » ObjectiveFunctionProperty |
The function that is optimized during model training.
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 objectiveFunctionProperty: sagemaker_mixins.CfnModelCardPropsMixin.ObjectiveFunctionProperty = {
function: {
condition: 'condition',
facet: 'facet',
function: 'function',
},
notes: 'notes',
};
Properties
| Name | Type | Description |
|---|---|---|
| function? | IResolvable | Function | A function object that details optimization direction, metric, and additional descriptions. |
| notes? | string | Notes about the object function, including other considerations for possible objective functions. |
function?
Type:
IResolvable | Function
(optional)
A function object that details optimization direction, metric, and additional descriptions.
notes?
Type:
string
(optional)
Notes about the object function, including other considerations for possible objective functions.

.NET
Go
Java
Python
TypeScript