Interface CfnModelCard.IMetricDataItemsProperty
Metric data.
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IMetricDataItemsProperty
Syntax (vb)
Public Interface IMetricDataItemsProperty
Remarks
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 .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Sagemaker;
var value;
var metricDataItemsProperty = new MetricDataItemsProperty {
Name = "name",
Type = "type",
Value = value,
// the properties below are optional
Notes = "notes",
XAxisName = new [] { "xAxisName" },
YAxisName = new [] { "yAxisName" }
};
Synopsis
Properties
Name | |
Notes | |
Type | |
Value | |
XAxis |
|
YAxis |
Properties
Name
string Name { get; }
Property Value
System.
Remarks
Notes
virtual string Notes { get; }
Property Value
System.
Remarks
Type
string Type { get; }
Property Value
System.
Remarks
Value
object Value { get; }
Property Value
System.
Remarks
XAxisName
virtual string[] XAxisName { get; }
Property Value
System.
Remarks
YAxisName
virtual string[] YAxisName { get; }
Property Value
System.