Skip to content
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

Merged

Conversation

RocketDelivery
Copy link
Contributor

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

@google-cla
Copy link

google-cla bot commented Jan 30, 2023

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.

@gbaned gbaned requested a review from fchollet January 30, 2023 16:35
@google-ml-butler google-ml-butler bot added the keras-team-review-pending Pending review by a Keras team member. label Jan 30, 2023
@rchao rchao removed the keras-team-review-pending Pending review by a Keras team member. label Feb 2, 2023
@jeromemassot
Copy link

Please merge the fix ASAP as we are legions in need of saving and restoring EfficientNet implementations without altering the official EfficientNet code. Thanks.

Copy link
Collaborator

@fchollet fchollet left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@google-ml-butler google-ml-butler bot added kokoro:force-run ready to pull Ready to be merged into the codebase labels Feb 22, 2023
copybara-service bot pushed a commit that referenced this pull request Feb 24, 2023
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
@copybara-service copybara-service bot merged commit 00a7dec into keras-team:master Feb 24, 2023
@gpiosenka
Copy link

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?

@Berganzio
Copy link

Unable to serialize [2.0896919 2.1128857 2.1081853] to JSON. Unrecognized type .

Still facing the same issue with efficientnetB0 today.
Is there a fix for this?

@mpolinowski
Copy link

mpolinowski commented Mar 21, 2023

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

see gist

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready to pull Ready to be merged into the codebase size:XS
Projects
None yet
Development

Successfully merging this pull request may close these issues.

efficientnetBx model.save() fails due to serialization problem with tf2.10.0
9 participants