interface EvaluationDetailProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.EvaluationDetailProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_EvaluationDetailProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.EvaluationDetailProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.EvaluationDetailProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
declare const value: any;
const evaluationDetailProperty: sagemaker_mixins.CfnModelCardPropsMixin.EvaluationDetailProperty = {
datasets: ['datasets'],
evaluationJobArn: 'evaluationJobArn',
evaluationObservation: 'evaluationObservation',
metadata: {
metadataKey: 'metadata',
},
metricGroups: [{
metricData: [{
name: 'name',
notes: 'notes',
type: 'type',
value: value,
xAxisName: ['xAxisName'],
yAxisName: ['yAxisName'],
}],
name: 'name',
}],
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| datasets? | string[] | The location of the datasets used to evaluate the model. |
| evaluation | string | The Amazon Resource Name (ARN) of the evaluation job. |
| evaluation | string | Any observations made during the model evaluation. |
| metadata? | { [string]: string } | IResolvable | Additional attributes associated with the evaluation results. |
| metric | IResolvable | (IResolvable | Metric)[] | An evaluation Metric Group object. |
| name? | 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:
{ [string]: string } | IResolvable
(optional)
Additional attributes associated with the evaluation results.
metricGroups?
Type:
IResolvable | (IResolvable | Metric)[]
(optional)
An evaluation Metric Group object.
name?
Type:
string
(optional)
The evaluation job name.

.NET
Go
Java
Python
TypeScript