Module Values_1.ProfilerConfigSource

Configuration information for Amazon SageMaker Debugger system monitoring, framework profiling, and storage paths.

Sourcetype nonrec t = {
  1. s3OutputPath : Values_0.S3Uri.t option;
    (*

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

    *)
  2. profilingIntervalInMilliseconds : ProfilingIntervalInMilliseconds.t option;
    (*

    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.

    *)
  3. profilingParameters : ProfilingParameters.t option;
    (*

    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.

    *)
  4. disableProfiler : DisableProfiler.t option;
    (*

    Configuration to turn off Amazon SageMaker Debugger's system monitoring and profiling functionality. To turn it off, set to True.

    *)
}
Sourceval make : ?s3OutputPath:??? -> ?profilingIntervalInMilliseconds:??? -> ?profilingParameters:??? -> ?disableProfiler:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DisableProfiler.t | `Long of ProfilingIntervalInMilliseconds.t | `Map of ([> `String of Values_0.ConfigKey.t ] * [> `String of Values_0.ConfigValue.t ]) list | `String of Values_0.S3Uri.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t