TrainingJobDebugHookConfig constructor

const TrainingJobDebugHookConfig({
  1. Input<List<TrainingJobDebugHookConfigCollectionConfiguration>?>? collectionConfigurations,
  2. Input<Map<String, String>?>? hookParameters,
  3. Input<String?>? localPath,
  4. required Input<String> s3OutputPath,
})

Creates a new TrainingJobDebugHookConfig. collectionConfigurations List of tensor collections to configure for the debug hook. Maximum of 20. See collectionConfigurations below. hookParameters Map of parameters for the debug hook. Maximum of 20 entries. localPath Local path where debug output is written. s3OutputPath S3 URI where debug output is stored.

Implementation

const TrainingJobDebugHookConfig({
  this.collectionConfigurations,
  this.hookParameters,
  this.localPath,
  required this.s3OutputPath,
});