Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DebugRuleConfiguration

import type { DebugRuleConfiguration } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";

Configuration information for SageMaker Debugger rules for debugging. To learn more about how to configure the DebugRuleConfiguration parameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.

interface DebugRuleConfiguration {
InstanceType?: ProcessingInstanceType | null;
LocalPath?: string | null;
RuleConfigurationName: string;
RuleEvaluatorImage: string;
RuleParameters?: {
[key: string]: string | null | undefined;
}
| null;
S3OutputPath?: string | null;
VolumeSizeInGB?: number | null;
}

§Properties

§
InstanceType?: ProcessingInstanceType | null
[src]

The instance type to deploy a custom rule for debugging a training job.

§
LocalPath?: string | null
[src]

Path to local storage location for output of rules. Defaults to /opt/ml/processing/output/rule/.

§
RuleConfigurationName: string
[src]

The name of the rule configuration. It must be unique relative to other rule configuration names.

§
RuleEvaluatorImage: string
[src]

The Amazon Elastic Container (ECR) Image for the managed rule evaluation.

§
RuleParameters?: {
[key: string]: string | null | undefined;
}
| null
[src]

Runtime configuration for rule container.

§
S3OutputPath?: string | null
[src]

Path to Amazon S3 storage location for rules.

§
VolumeSizeInGB?: number | null
[src]

The size, in GB, of the ML storage volume attached to the processing instance.