-
Notifications
You must be signed in to change notification settings - Fork 19.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix serialization error with EfficientNet #17498
Fix serialization error with EfficientNet #17498
Conversation
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
Please merge the fix ASAP as we are legions in need of saving and restoring EfficientNet implementations without altering the official EfficientNet code. Thanks. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Imported from GitHub PR #17498 Fixes #17199. The argument to layer.Rescaling is passed as EagerTensor which is not serializable, because tf.math.sqrt() may return EagerTensor. It is functionally equivalent to the solution suggested by @hctomkins in #17199 Copybara import of the project: -- 5b931e6 by Suyoung Choi <kes5219@gmail.com>: Fix serialization error due to EagerTensor constant Merging this change closes #17498 FUTURE_COPYBARA_INTEGRATE_REVIEW=#17498 from RocketDelivery:efficientnet-serialize 5b931e6 PiperOrigin-RevId: 512105123
encountered the same issue with any of the EfficientNet models. Saving the trained model works for tensorflow version 2.9.2 but does not work for version 2.11.0. Is there a fix for this? |
Unable to serialize [2.0896919 2.1128857 2.1081853] to JSON. Unrecognized type . Still facing the same issue with efficientnetB0 today. |
The same error after: tf.__version__
# '2.11.0'
base_model_v2 = tf.keras.applications.efficientnet_v2.EfficientNetV2M(include_top=False)
...
model.save('../saved_models/food101_env2m_30epochs') EDIT: I re-ran a 1 epoch training and this time saving worked 🤔 EDIT2: I just finished a full re-run and was unable to reproduce the error. All that I did after the first failed attempt was stopping and re-opening the notebook and I also tried to update Tensorflow (but it was already the latest version). |
Fixes keras-team/tf-keras#383. The argument to layer.Rescaling is passed as EagerTensor which is not serializable, because tf.math.sqrt() may return EagerTensor.
It is functionally equivalent to the solution suggested by @hctomkins in keras-team/tf-keras#383