TrainingJobProfilerConfig constructor

const TrainingJobProfilerConfig({
  1. Input<bool?>? disableProfiler,
  2. Input<int?>? profilingIntervalInMilliseconds,
  3. Input<Map<String, String>?>? profilingParameters,
  4. Input<String?>? s3OutputPath,
})

Creates a new TrainingJobProfilerConfig. disableProfiler Whether to disable the profiler. profilingIntervalInMilliseconds Time interval in milliseconds for capturing system metrics. Valid values: 100, 200, 500, 1000, 5000, 60000. profilingParameters Map of profiling parameters. Maximum of 20 entries. s3OutputPath S3 URI where profiler output is stored.

Implementation

const TrainingJobProfilerConfig({
  this.disableProfiler,
  this.profilingIntervalInMilliseconds,
  this.profilingParameters,
  this.s3OutputPath,
});