Skip to content

Commit 590c8de

Browse files
Xharktensorflower-gardener
authored andcommitted
Update release notes and version for TFMOT release 0.8.0.
PiperOrigin-RevId: 605154755
1 parent dc3e232 commit 590c8de

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

RELEASE.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ Keras pruning API:
3232

3333
# TensorFlow Model Optimization next release TBD
3434

35+
# TensorFlow Model Optimization 0.8.0
36+
37+
TFMOT 0.8.0 forces users to use the keras v2 version.
38+
* Fix structural pruning sparsity notebook
39+
* Remove private Keras imports.
40+
* Redirect TF references.
41+
* Fix broken tests.
42+
* Tested against TensorFlow 2.14.1, and nightly on Python 3.
43+
3544
# TensorFlow Model Optimization 0.7.5
3645

3746
TFMOT 0.7.5 fixes compatibility issues with new keras.

pip_pkg.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ mkdir -p "$1"
3434
DEST=$(dirname "${1}/does_not_exist")
3535
DEST=$(cd "$DEST" && pwd)
3636

37-
cd bazel-bin/pip_pkg.runfiles/tensorflow_model_optimization
37+
cd bazel-bin/pip_pkg.runfiles/_main
3838

3939
# Pass through remaining arguments (following the first argument, which
4040
# specifies the output dir) to setup.py, e.g.,

tensorflow_model_optimization/python/core/version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616

1717
# We follow Semantic Versioning (https://semver.org/)
1818
_MAJOR_VERSION = '0'
19-
_MINOR_VERSION = '7'
20-
_PATCH_VERSION = '5'
19+
_MINOR_VERSION = '8'
20+
_PATCH_VERSION = '0'
2121

2222
# When building releases, we can update this value on the release branch to
2323
# reflect the current release candidate ('rc0', 'rc1') or, finally, the official
2424
# stable release (indicated by `_VERSION_SUFFIX = ''`). Outside the context of a
2525
# release branch, the current version is by default assumed to be a
2626
# 'development' version, labeled 'dev'.
27-
_VERSION_SUFFIX = 'dev'
27+
_VERSION_SUFFIX = ''
2828

2929
# Example, '0.4.0-dev'
3030
__version__ = '.'.join([

0 commit comments

Comments
 (0)