W3cubDocs

/TensorFlow

tf.keras.optimizers.schedules.serialize

Serializes a LearningRateSchedule into a JSON-compatible dict.

Args
learning_rate_schedule The LearningRateSchedule object to serialize.
Returns
A JSON-serializable dict representing the object's config.

Example:

lr_schedule = keras.optimizers.schedules.ExponentialDecay(
    0.1, decay_steps=100000, decay_rate=0.96, staircase=True)
keras.optimizers.schedules.serialize(lr_schedule)
{'module': 'keras.optimizers.schedules',
'class_name': 'ExponentialDecay', 'config': {...},
'registered_name': None}

© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/optimizers/schedules/serialize