tf.keras.optimizers.schedules.ExponentialDecay

View source on GitHub

A LearningRateSchedule that uses an exponential decay schedule.

Inherits From: LearningRateSchedule

tf.keras.optimizers.schedules.ExponentialDecay(
    initial_learning_rate, decay_steps, decay_rate, staircase=False, name=None
)

Args:

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()