The number of epochs is the number of complete passes through the training dataset. The quality depends on the number of epochs.

interface TrainingNumEpochs {
    default?: number;
    max?: number;
    min?: number;
}

Properties

Properties

default?: number

The default value.

max?: number

The maximum value.

min?: number

The minimum value.