TrainingJobCheckpointConfig constructor

const TrainingJobCheckpointConfig({
  1. Input<String?>? localPath,
  2. required Input<String> s3Uri,
})

Creates a new TrainingJobCheckpointConfig. localPath Local path where checkpoints are written. s3Uri S3 URI where checkpoints are stored.

Implementation

const TrainingJobCheckpointConfig({
  this.localPath,
  required this.s3Uri,
});