Show / Hide Table of Contents

Class CfnModelCardPropsMixin.EvaluationDetailProperty

The evaluation details of the model.

Inheritance
object
CfnModelCardPropsMixin.EvaluationDetailProperty
Implements
CfnModelCardPropsMixin.IEvaluationDetailProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-datasets

EvaluationJobArn

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

public string? EvaluationJobArn { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-evaluationjobarn

EvaluationObservation

Any observations made during the model evaluation.

public string? EvaluationObservation { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-evaluationobservation

Metadata

Additional attributes associated with the evaluation results.

public object? Metadata { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-metadata

Type union: either Dictionary<string, string> or IResolvable

MetricGroups

An evaluation Metric Group object.

public object? MetricGroups { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-metricgroups

Type union: either IResolvable or (either IResolvable or CfnModelCardPropsMixin.IMetricGroupProperty)[]

Name

The evaluation job name.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-evaluationdetail.html#cfn-sagemaker-modelcard-evaluationdetail-name

Implements

CfnModelCardPropsMixin.IEvaluationDetailProperty
Back to top Generated by DocFX