Class CfnModelCardPropsMixin.EvaluationDetailProperty
The evaluation details of the model.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnModelCardPropsMixin.EvaluationDetailProperty : CfnModelCardPropsMixin.IEvaluationDetailProperty
Syntax (vb)
Public Class CfnModelCardPropsMixin.EvaluationDetailProperty Implements CfnModelCardPropsMixin.IEvaluationDetailProperty
Remarks
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.CfnPropertyMixins.AWS.SageMaker;
var value;
var evaluationDetailProperty = new EvaluationDetailProperty {
Datasets = new [] { "datasets" },
EvaluationJobArn = "evaluationJobArn",
EvaluationObservation = "evaluationObservation",
Metadata = new Dictionary<string, string> {
{ "metadataKey", "metadata" }
},
MetricGroups = new [] { new MetricGroupProperty {
MetricData = new [] { new MetricDataItemsProperty {
Name = "name",
Notes = "notes",
Type = "type",
Value = value,
XAxisName = new [] { "xAxisName" },
YAxisName = new [] { "yAxisName" }
} },
Name = "name"
} },
Name = "name"
};
Synopsis
Constructors
| EvaluationDetailProperty() | The evaluation details of the model. |
Properties
| Datasets | The location of the datasets used to evaluate the model. |
| EvaluationJobArn | The Amazon Resource Name (ARN) of the evaluation job. |
| EvaluationObservation | Any observations made during the model evaluation. |
| Metadata | Additional attributes associated with the evaluation results. |
| MetricGroups | An evaluation Metric Group object. |
| Name | The evaluation job name. |
Constructors
EvaluationDetailProperty()
The evaluation details of the model.
public EvaluationDetailProperty()
Remarks
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.CfnPropertyMixins.AWS.SageMaker;
var value;
var evaluationDetailProperty = new EvaluationDetailProperty {
Datasets = new [] { "datasets" },
EvaluationJobArn = "evaluationJobArn",
EvaluationObservation = "evaluationObservation",
Metadata = new Dictionary<string, string> {
{ "metadataKey", "metadata" }
},
MetricGroups = new [] { new MetricGroupProperty {
MetricData = new [] { new MetricDataItemsProperty {
Name = "name",
Notes = "notes",
Type = "type",
Value = value,
XAxisName = new [] { "xAxisName" },
YAxisName = new [] { "yAxisName" }
} },
Name = "name"
} },
Name = "name"
};
Properties
Datasets
The location of the datasets used to evaluate the model.
public string[]? Datasets { get; set; }
Property Value
string[]
Remarks
EvaluationJobArn
The Amazon Resource Name (ARN) of the evaluation job.
public string? EvaluationJobArn { get; set; }
Property Value
Remarks
EvaluationObservation
Any observations made during the model evaluation.
public string? EvaluationObservation { get; set; }
Property Value
Remarks
Metadata
Additional attributes associated with the evaluation results.
public object? Metadata { get; set; }
Property Value
Remarks
Type union: either Dictionary<string, string> or IResolvable
MetricGroups
An evaluation Metric Group object.
public object? MetricGroups { get; set; }
Property Value
Remarks
Name
The evaluation job name.
public string? Name { get; set; }