interface MetricDataItemsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelCardPropsMixin.MetricDataItemsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelCardPropsMixin_MetricDataItemsProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelCardPropsMixin.MetricDataItemsProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelCardPropsMixin.MetricDataItemsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelCardPropsMixin » MetricDataItemsProperty |
Metric data.
The type determines the data types that you specify for value , XAxisName and YAxisName . For information about specifying values for metrics, see model card JSON schema .
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 metricDataItemsProperty: sagemaker_mixins.CfnModelCardPropsMixin.MetricDataItemsProperty = {
name: 'name',
notes: 'notes',
type: 'type',
value: value,
xAxisName: ['xAxisName'],
yAxisName: ['yAxisName'],
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | |
| notes? | string | |
| type? | string | |
| value? | any | |
| x | string[] | |
| y | string[] |
name?
Type:
string
(optional)
notes?
Type:
string
(optional)
type?
Type:
string
(optional)
value?
Type:
any
(optional)
xAxisName?
Type:
string[]
(optional)
yAxisName?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript