max_steps_per_epoch: <int>
(Optional)max_steps_per_epoch
controls the maximum number of steps performed in a single epoch during training.
batch_size
max_steps_per_epoch
steps, after which validation is performed.This is particularly useful for managing the trade-off between training time and validation frequency.
For example, to double the validation frequency while keeping the total number of mini-batches the model processes unchanged, halve max_steps_per_epoch
and double max_epochs
.
max_steps_per_epoch
must be > 0
.run_mode | Default Value |
---|---|
FAST | 1000 |
NORMAL | 2000 |
BEST | 2000 |
max_steps_per_epoch: <int>
(Optional)max_steps_per_epoch
controls the maximum number of steps performed in a single epoch during training.
batch_size
max_steps_per_epoch
steps, after which validation is performed.This is particularly useful for managing the trade-off between training time and validation frequency.
For example, to double the validation frequency while keeping the total number of mini-batches the model processes unchanged, halve max_steps_per_epoch
and double max_epochs
.
max_steps_per_epoch
must be > 0
.run_mode | Default Value |
---|---|
FAST | 1000 |
NORMAL | 2000 |
BEST | 2000 |