Interface CfnModelCardPropsMixin.EvaluationDetailProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnModelCardPropsMixin.EvaluationDetailProperty.Jsii$Proxy
- Enclosing class:
CfnModelCardPropsMixin
@Stability(Stable)
public static interface CfnModelCardPropsMixin.EvaluationDetailProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
Object value;
EvaluationDetailProperty evaluationDetailProperty = EvaluationDetailProperty.builder()
.datasets(List.of("datasets"))
.evaluationJobArn("evaluationJobArn")
.evaluationObservation("evaluationObservation")
.metadata(Map.of(
"metadataKey", "metadata"))
.metricGroups(List.of(MetricGroupProperty.builder()
.metricData(List.of(MetricDataItemsProperty.builder()
.name("name")
.notes("notes")
.type("type")
.value(value)
.xAxisName(List.of("xAxisName"))
.yAxisName(List.of("yAxisName"))
.build()))
.name("name")
.build()))
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnModelCardPropsMixin.EvaluationDetailPropertystatic final classAn implementation forCfnModelCardPropsMixin.EvaluationDetailProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The location of the datasets used to evaluate the model.default StringThe Amazon Resource Name (ARN) of the evaluation job.default StringAny observations made during the model evaluation.default ObjectAdditional attributes associated with the evaluation results.default ObjectAn evaluation Metric Group object.default StringgetName()The evaluation job name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDatasets
The location of the datasets used to evaluate the model.- See Also:
-
getEvaluationJobArn
The Amazon Resource Name (ARN) of the evaluation job.- See Also:
-
getEvaluationObservation
Any observations made during the model evaluation.- See Also:
-
getMetadata
Additional attributes associated with the evaluation results.Returns union: either Mapinvalid input: '<'String,
String> orIResolvable- See Also:
-
getMetricGroups
An evaluation Metric Group object.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnModelCardPropsMixin.MetricGroupProperty>- See Also:
-
getName
The evaluation job name.- See Also:
-
builder
-