tf.keras.optimizers.schedules.PiecewiseConstantDecay
A LearningRateSchedule that uses a piecewise constant decay schedule.
Inherits From: LearningRateSchedule
tf.keras.optimizers.schedules.PiecewiseConstantDecay(
boundaries, values, name=None
)
Args |
boundaries
|
A list of Tensor s or int s or float s with strictly
increasing entries, and with all elements having the same type as the
optimizer step.
|
values
|
A list of Tensor s or float s or int s that specifies the
values for the intervals defined by boundaries . It should have one
more element than boundaries , and all elements should have the same
type.
|
name
|
A string. Optional name of the operation. Defaults to
'PiecewiseConstant'.
|
Raises |
ValueError
|
if the number of elements in the lists do not match.
|
Methods
from_config
View source
@classmethod
from_config(
config
)
Instantiates a LearningRateSchedule
from its config.
Args |
config
|
Output of get_config() .
|
Returns |
A LearningRateSchedule instance.
|
get_config
View source
get_config()
__call__
View source
__call__(
step
)
Call self as a function.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2020-10-01 UTC.
[null,null,["Last updated 2020-10-01 UTC."],[],[]]