datatable.models.Ftrl.nepochs¶
nepochs
nepochs
Number of training epochs. When nepochs is an integer number,
the model will train on all the data provided to fit() method
nepochs times. If nepochs has a fractional part {nepochs},
the model will train on all the data [nepochs] times,
i.e. the integer part of nepochs. Plus, it will also perform an additional
training iteration on the {nepochs} fraction of data.
Parameters¶
return
floatCurrent nepochs value.
newnepochs
floatNew nepochs value, should be non-negative.
except
ValueErrorThe exception is raised when newnepochs value is negative.