aws-cdk-lib.aws_sagemaker.CfnModelCard.ObjectiveFunctionProperty

interface ObjectiveFunctionProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelCard.ObjectiveFunctionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_ObjectiveFunctionProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelCard.ObjectiveFunctionProperty
Pythonaws_cdk.aws_sagemaker.CfnModelCard.ObjectiveFunctionProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelCard » 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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const objectiveFunctionProperty: sagemaker.CfnModelCard.ObjectiveFunctionProperty = {
  function: {
    condition: 'condition',
    facet: 'facet',
    function: 'function',
  },
  notes: 'notes',
};

Properties

NameTypeDescription
function?IResolvable | FunctionPropertyA function object that details optimization direction, metric, and additional descriptions.
notes?stringNotes about the object function, including other considerations for possible objective functions.

function?

Type: IResolvable | FunctionProperty (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.