mirror of
https://github.com/zebrajr/tensorflow.git
synced 2025-12-06 00:19:58 +01:00
Add warmup to CosineDecay learning rate schedule
PiperOrigin-RevId: 513348996
This commit is contained in:
parent
ab5b4eaffd
commit
b59d2a159f
|
|
@ -47,6 +47,10 @@
|
|||
`SidecarEvaluator` evaluator. The evaluator regularly evaluates the
|
||||
model and exports it if the user-defined comparison function determines
|
||||
that it is an improvement.
|
||||
* Added warmup capabilities to `tf.keras.optimizers.schedules.CosineDecay`
|
||||
learning rate scheduler. You can now specify an initial and target
|
||||
learning rate, and our scheduler will perform a linear interpolation
|
||||
between the two after which it will begin a decay phase.
|
||||
|
||||
* `tf.function`:
|
||||
* ConcreteFunction (`tf.types.experimental.ConcreteFunction`) as generated
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ tf_class {
|
|||
is_instance: "<type \'object\'>"
|
||||
member_method {
|
||||
name: "__init__"
|
||||
argspec: "args=[\'self\', \'initial_learning_rate\', \'decay_steps\', \'alpha\', \'name\'], varargs=None, keywords=None, defaults=[\'0.0\', \'None\'], "
|
||||
argspec: "args=[\'self\', \'initial_learning_rate\', \'decay_steps\', \'alpha\', \'name\', \'warmup_target\', \'warmup_steps\'], varargs=None, keywords=None, defaults=[\'0.0\', \'None\', \'None\', \'0\'], "
|
||||
}
|
||||
member_method {
|
||||
name: "from_config"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user