new_learning_rate_schedule_class {keras} | R Documentation |
Create a new learning rate schedule type
Description
Create a new learning rate schedule type
Usage
new_learning_rate_schedule_class(
classname,
...,
initialize = NULL,
call,
get_config = NULL
)
Arguments
classname |
string |
... |
methods and properties of the schedule class |
initialize , get_config |
Additional recommended methods to implement. |
call |
function which takes a step argument (scalar integer tensor, the
current training step count, and returns the new learning rate). For
tracking additional state, objects |
Value
A LearningRateSchedule
class generator.
[Package keras version 2.15.0 Index]