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

SavedModel format doesn't support masking in Keras 3 #21133

Open
drasmuss opened this issue Apr 4, 2025 · 0 comments
Open

SavedModel format doesn't support masking in Keras 3 #21133

drasmuss opened this issue Apr 4, 2025 · 0 comments
Assignees
Labels

Comments

@drasmuss
Copy link
Contributor

drasmuss commented Apr 4, 2025

Loading a SavedModel in Keras 3 loses any mask information on the model output. Loading a SavedModel in tf-keras preserves the mask information, as expected. Here is an example:

USE_KERAS_3 = True

import tensorflow as tf
if USE_KERAS_3:
    import keras
else:
    import tf_keras as keras



inp = keras.Input((1,))
x = keras.layers.Masking(mask_value=0.0)(inp)
model = keras.Model(inp, x)

if USE_KERAS_3:
    model.export("saved_model")
    loaded = keras.layers.TFSMLayer("saved_model")
else:
    model.save("saved_model", save_format="tf")
    loaded = keras.models.load_model("saved_model")


print(loaded(tf.zeros((1, 1)))._keras_mask)

With USE_KERAS_3=True this gives:

AttributeError: 'tensorflow.python.framework.ops.EagerTensor' object has no attribute '_keras_mask'

With USE_KERAS_3=False this gives:

tf.Tensor([False], shape=(1,), dtype=bool)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants