Class CfnModelPackage.ModelQualityProperty
Model quality statistics and constraints.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Sagemaker
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnModelPackage.ModelQualityProperty : CfnModelPackage.IModelQualityProperty
Syntax (vb)
Public Class CfnModelPackage.ModelQualityProperty Implements CfnModelPackage.IModelQualityProperty
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.AWS.Sagemaker;
var modelQualityProperty = new ModelQualityProperty {
Constraints = new MetricsSourceProperty {
ContentType = "contentType",
S3Uri = "s3Uri",
// the properties below are optional
ContentDigest = "contentDigest"
},
Statistics = new MetricsSourceProperty {
ContentType = "contentType",
S3Uri = "s3Uri",
// the properties below are optional
ContentDigest = "contentDigest"
}
};
Synopsis
Constructors
ModelQualityProperty() | Model quality statistics and constraints. |
Properties
Constraints | Model quality constraints. |
Statistics | Model quality statistics. |
Constructors
ModelQualityProperty()
Model quality statistics and constraints.
public ModelQualityProperty()
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.AWS.Sagemaker;
var modelQualityProperty = new ModelQualityProperty {
Constraints = new MetricsSourceProperty {
ContentType = "contentType",
S3Uri = "s3Uri",
// the properties below are optional
ContentDigest = "contentDigest"
},
Statistics = new MetricsSourceProperty {
ContentType = "contentType",
S3Uri = "s3Uri",
// the properties below are optional
ContentDigest = "contentDigest"
}
};
Properties
Constraints
Model quality constraints.
public object? Constraints { get; set; }
Property Value
Remarks
Statistics
Model quality statistics.
public object? Statistics { get; set; }