tf.keras.optimizers.schedules.PiecewiseConstantDecay

View source on GitHub

A LearningRateSchedule that uses a piecewise constant decay schedule.

Inherits From: LearningRateSchedule

tf.keras.optimizers.schedules.PiecewiseConstantDecay(
    boundaries, values, name=None
)

Args:

Raises:

Methods

__call__

View source

__call__(
    step
)

Call self as a function.

from_config

View source

@classmethod
from_config(
    config
)

Instantiates a LearningRateSchedule from its config.

Args:

Returns:

A LearningRateSchedule instance.

get_config

View source

get_config()