Fit `self.model` for `n_epoch` at flat `start_lr` before `curve_type` annealing to `end_lr` with weight decay of `wd` and callbacks `cbs`.
fit_flat_lin(
object,
n_epochs = 100,
n_epochs_decay = 100,
start_lr = NULL,
end_lr = 0,
curve_type = "linear",
wd = NULL,
cbs = NULL,
reset_opt = FALSE
)
model / learner
number of epochs
number of epochs with decay
Desired starting learning rate, used for beginning pct of training.
Desired end learning rate, training will conclude at this learning rate.
Curve type for learning rate annealing. Options are 'linear', 'cosine', and 'exponential'.
weight decay
callbacks
reset optimizer
None