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

Remove private Keras imports. #1094

Merged
merged 1 commit into from
Sep 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,15 @@
from tensorflow_model_optimization.python.core.quantization.keras.experimental.default_n_bit import default_n_bit_quantize_registry
from tensorflow_model_optimization.python.core.quantization.keras.graph_transformations import transforms


try:
from keras.backend import unique_object_name # pylint: disable=g-import-not-at-top
import keras # pylint: disable=g-import-not-at-top
if hasattr(keras, 'src'):
# Path as seen in pip packages as of TF/Keras 2.13.
from keras.src.backend import unique_object_name # pylint: disable=g-import-not-at-top,g-importing-member
else:
from keras.backend import unique_object_name # pylint: disable=g-import-not-at-top,g-importing-member
except ImportError:
# Path as seen in pip packages as of TF/Keras 2.13.
from keras.src.backend import unique_object_name # pylint: disable=g-import-not-at-top
unique_object_name = tf._keras_internal.backend.unique_object_name # pylint: disable=protected-access

LayerNode = transforms.LayerNode
LayerPattern = transforms.LayerPattern
Expand Down