Skip to content

Commit

Permalink
Update release notes
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 399889529
  • Loading branch information
daverim authored and tensorflower-gardener committed Sep 30, 2021
1 parent 2df6069 commit 05f35a2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,24 @@ Keras pruning API:

# TensorFlow Model Optimization next release TBD



# TensorFlow Model Optimization 0.7.0

TFMOT 0.7.0 adds updates for Quantization Aware Training (QAT)
and Pruning API. Adds support for structured (MxN) pruning.
QAT now also has support for layers with swish activations and ability
to disable per-axis quantization in the default8_bit scheme.
Adds support for combining pruning, QAT and weight clustering.

Keras Quantization API:
Tested against TensorFlow 2.6.0, 2.5.1 and nightly with Python 3.
* Added QuantizeWrapperV2 class which preserves order of weights is the default for quantize_apply.
* Added a flag to disable per-axis quantizers in default8_bit scheme.
* Added swish as supported activation.

Keras pruning API:
Tested against TensorFlow 2.6.0, 2.5.1 and nightly with Python 3.
* Added structural pruning with MxN sparsity.

Keras clustering API:
Expand Down
2 changes: 1 addition & 1 deletion tensorflow_model_optimization/python/core/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# We follow Semantic Versioning (https://semver.org/)
_MAJOR_VERSION = '0'
_MINOR_VERSION = '6'
_MINOR_VERSION = '7'
_PATCH_VERSION = '0'

# When building releases, we can update this value on the release branch to
Expand Down

0 comments on commit 05f35a2

Please sign in to comment.