Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(test): deserialization of h5 models w/ custom obj doesn't work in…
… TF2.13 It seems that (de)serialization of h5 models in TF 2.13 has been changed: custom objects, even with "register_keras_serializable", cannot be loaded. Two solutions are possible: - use "with_custom_object_scope()" to load a model with custom objects. - save model in Keras format and not h5. The second option was chosen because this format is now preferred for saving models.
- Loading branch information