From da9cca770e6a1abb55f6e38f9a9d47cc731dd6a9 Mon Sep 17 00:00:00 2001 From: "A. Unique TensorFlower" Date: Sun, 2 Apr 2023 18:44:41 -0700 Subject: [PATCH] Update release notes and version for TFMOT release 0.7.4. PiperOrigin-RevId: 521333264 --- RELEASE.md | 4 ++++ ci/kokoro/gcp_ubuntu/Dockerfile | 2 +- tensorflow_model_optimization/python/core/version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/RELEASE.md b/RELEASE.md index e060f082a..b4723ef3c 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -32,6 +32,10 @@ Keras pruning API: # TensorFlow Model Optimization next release TBD +# TensorFlow Model Optimization 0.7.4 + +TFMOT 0.7.4 add from_config method to QuantizeConfig class since the new keras serialization enforces it. + # TensorFlow Model Optimization 0.7.3 TFMOT 0.7.3 add remove_input_range method that removes input range after apply quantize. diff --git a/ci/kokoro/gcp_ubuntu/Dockerfile b/ci/kokoro/gcp_ubuntu/Dockerfile index 41e410727..a7490ba91 100644 --- a/ci/kokoro/gcp_ubuntu/Dockerfile +++ b/ci/kokoro/gcp_ubuntu/Dockerfile @@ -29,7 +29,7 @@ FROM ubuntu:20.04 ARG BAZEL_VERSION=4.2.2 -ARG TENSORFLOW_VERSION=2.11.0 +ARG TENSORFLOW_VERSION=2.12.0 RUN apt-get update -y diff --git a/tensorflow_model_optimization/python/core/version.py b/tensorflow_model_optimization/python/core/version.py index 754504b3b..28ccf1be1 100644 --- a/tensorflow_model_optimization/python/core/version.py +++ b/tensorflow_model_optimization/python/core/version.py @@ -17,7 +17,7 @@ # We follow Semantic Versioning (https://semver.org/) _MAJOR_VERSION = '0' _MINOR_VERSION = '7' -_PATCH_VERSION = '3' +_PATCH_VERSION = '4' # When building releases, we can update this value on the release branch to # reflect the current release candidate ('rc0', 'rc1') or, finally, the official