Show / Hide Table of Contents

Interface CfnModelCardPropsMixin.ISourceAlgorithmProperty

Specifies an algorithm that was used to create the model package.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.SageMaker
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnModelCardPropsMixin.ISourceAlgorithmProperty
Syntax (vb)
Public Interface CfnModelCardPropsMixin.ISourceAlgorithmProperty
Remarks

The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-modelcard-sourcealgorithm.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 sourceAlgorithmProperty = new SourceAlgorithmProperty {
                 AlgorithmName = "algorithmName",
                 ModelDataUrl = "modelDataUrl"
             };

Synopsis

Properties

AlgorithmName

The name of an algorithm that was used to create the model package.

ModelDataUrl

The Amazon S3 path where the model artifacts, which result from model training, are stored.

Properties

AlgorithmName

The name of an algorithm that was used to create the model package.

string? AlgorithmName { get; }
Property Value

string

Remarks

The algorithm must be either an algorithm resource in your SageMaker account or an algorithm in AWS Marketplace that you are subscribed to.

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

ModelDataUrl

The Amazon S3 path where the model artifacts, which result from model training, are stored.

string? ModelDataUrl { get; }
Property Value

string

Remarks

This path must point to a single gzip compressed tar archive ( .tar.gz suffix).

The model artifacts must be in an S3 bucket that is in the same AWS region as the algorithm.

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

Back to top Generated by DocFX