datatable.models.LinearModel.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.
new_nepochs
floatNew nepochs value, should be non-negative.
except
ValueErrorThe exception is raised when new_nepochs value is negative.
The content on this page is licensed under the Creative Commons Attribution 4.0 License
(CC BY 4.0) ,
and code samples are licensed under the MIT License.