aws-cdk-lib.aws_sagemaker.CfnModelCard.EvaluationDetailProperty

interface EvaluationDetailProperty

LanguageType name
.NETAmazon.CDK.AWS.Sagemaker.CfnModelCard.EvaluationDetailProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnModelCard_EvaluationDetailProperty
Javasoftware.amazon.awscdk.services.sagemaker.CfnModelCard.EvaluationDetailProperty
Pythonaws_cdk.aws_sagemaker.CfnModelCard.EvaluationDetailProperty
TypeScript aws-cdk-lib » aws_sagemaker » CfnModelCard » EvaluationDetailProperty

The evaluation details of 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-lib';

declare const value: any;
const evaluationDetailProperty: sagemaker.CfnModelCard.EvaluationDetailProperty = {
  name: 'name',

  // the properties below are optional
  datasets: ['datasets'],
  evaluationJobArn: 'evaluationJobArn',
  evaluationObservation: 'evaluationObservation',
  metadata: {
    metadataKey: 'metadata',
  },
  metricGroups: [{
    metricData: [{
      name: 'name',
      type: 'type',
      value: value,

      // the properties below are optional
      notes: 'notes',
      xAxisName: ['xAxisName'],
      yAxisName: ['yAxisName'],
    }],
    name: 'name',
  }],
};

Properties

NameTypeDescription
namestringThe evaluation job name.
datasets?string[]The location of the datasets used to evaluate the model.
evaluationJobArn?stringThe Amazon Resource Name (ARN) of the evaluation job.
evaluationObservation?stringAny observations made during the model evaluation.
metadata?IResolvable | { [string]: string }Additional attributes associated with the evaluation results.
metricGroups?IResolvable | IResolvable | MetricGroupProperty[]An evaluation Metric Group object.

name

Type: string

The evaluation job name.


datasets?

Type: string[] (optional)

The location of the datasets used to evaluate the model.


evaluationJobArn?

Type: string (optional)

The Amazon Resource Name (ARN) of the evaluation job.


evaluationObservation?

Type: string (optional)

Any observations made during the model evaluation.


metadata?

Type: IResolvable | { [string]: string } (optional)

Additional attributes associated with the evaluation results.


metricGroups?

Type: IResolvable | IResolvable | MetricGroupProperty[] (optional)

An evaluation Metric Group object.