File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
tensorflow_model_optimization/python/core Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,24 @@ Keras pruning API:
3232
3333# TensorFlow Model Optimization next release TBD
3434
35+
36+
37+ # TensorFlow Model Optimization 0.7.0
38+
39+ TFMOT 0.7.0 adds updates for Quantization Aware Training (QAT)
40+ and Pruning API. Adds support for structured (MxN) pruning.
41+ QAT now also has support for layers with swish activations and ability
42+ to disable per-axis quantization in the default8_bit scheme.
43+ Adds support for combining pruning, QAT and weight clustering.
44+
45+ Keras Quantization API:
46+ Tested against TensorFlow 2.6.0, 2.5.1 and nightly with Python 3.
47+ * Added QuantizeWrapperV2 class which preserves order of weights is the default for quantize_apply.
48+ * Added a flag to disable per-axis quantizers in default8_bit scheme.
49+ * Added swish as supported activation.
50+
3551Keras pruning API:
52+ Tested against TensorFlow 2.6.0, 2.5.1 and nightly with Python 3.
3653* Added structural pruning with MxN sparsity.
3754
3855Keras clustering API:
Original file line number Diff line number Diff line change 1616
1717# We follow Semantic Versioning (https://semver.org/)
1818_MAJOR_VERSION = '0'
19- _MINOR_VERSION = '6 '
19+ _MINOR_VERSION = '7 '
2020_PATCH_VERSION = '0'
2121
2222# When building releases, we can update this value on the release branch to
You can’t perform that action at this time.
0 commit comments