File tree Expand file tree Collapse file tree 4 files changed +1
-9
lines changed
_tf_keras/keras/callbacks Expand file tree Collapse file tree 4 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 1919from keras .src .callbacks .model_checkpoint import (
2020 ModelCheckpoint as ModelCheckpoint ,
2121)
22- from keras .src .callbacks .orbax_checkpoint import (
23- OrbaxCheckpoint as OrbaxCheckpoint ,
24- )
2522from keras .src .callbacks .progbar_logger import ProgbarLogger as ProgbarLogger
2623from keras .src .callbacks .reduce_lr_on_plateau import (
2724 ReduceLROnPlateau as ReduceLROnPlateau ,
Original file line number Diff line number Diff line change 1919from keras .src .callbacks .model_checkpoint import (
2020 ModelCheckpoint as ModelCheckpoint ,
2121)
22- from keras .src .callbacks .orbax_checkpoint import (
23- OrbaxCheckpoint as OrbaxCheckpoint ,
24- )
2522from keras .src .callbacks .progbar_logger import ProgbarLogger as ProgbarLogger
2623from keras .src .callbacks .reduce_lr_on_plateau import (
2724 ReduceLROnPlateau as ReduceLROnPlateau ,
Original file line number Diff line number Diff line change 44
55from keras .src import backend
66from keras .src import tree
7- from keras .src .api_export import keras_export
87from keras .src .callbacks .monitor_callback import (
98 MonitorCallback , # For metric monitoring logic
109)
@@ -54,7 +53,6 @@ def convert_scalars(obj):
5453 return state_tree
5554
5655
57- @keras_export ("keras.callbacks.OrbaxCheckpoint" )
5856class OrbaxCheckpoint (MonitorCallback ):
5957 """Callback to save and load model state using Orbax with a similar API to
6058 ModelCheckpoint.
Original file line number Diff line number Diff line change 11from keras .src .api_export import keras_export
22
33# Unique source of truth for the version number.
4- __version__ = "3.12 .0"
4+ __version__ = "3.13 .0"
55
66
77@keras_export ("keras.version" )
You can’t perform that action at this time.
0 commit comments