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

ProfilerConfigForUpdate

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

Configuration information for updating the Amazon SageMaker Debugger profile parameters, system and framework metrics configurations, and storage paths.

interface ProfilerConfigForUpdate {
DisableProfiler?: boolean | null;
ProfilingIntervalInMilliseconds?: number | null;
ProfilingParameters?: {
[key: string]: string | null | undefined;
}
| null;
S3OutputPath?: string | null;
}

§Properties

§
DisableProfiler?: boolean | null
[src]

To turn off Amazon SageMaker Debugger monitoring and profiling while a training job is in progress, set to True.

§
ProfilingIntervalInMilliseconds?: number | null
[src]

A time interval for capturing system metrics in milliseconds. Available values are 100, 200, 500, 1000 (1 second), 5000 (5 seconds), and 60000 (1 minute) milliseconds. The default value is 500 milliseconds.

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

Configuration information for capturing framework metrics. Available key strings for different profiling options are DetailedProfilingConfig, PythonProfilingConfig, and DataLoaderProfilingConfig. The following codes are configuration structures for the ProfilingParameters parameter. To learn more about how to configure the ProfilingParameters parameter, see Use the SageMaker and Debugger Configuration API Operations to Create, Update, and Debug Your Training Job.

§
S3OutputPath?: string | null
[src]

Path to Amazon S3 storage location for system and framework metrics.