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:
32
32
33
33
# TensorFlow Model Optimization next release TBD
34
34
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
+
35
51
Keras pruning API:
52
+ Tested against TensorFlow 2.6.0, 2.5.1 and nightly with Python 3.
36
53
* Added structural pruning with MxN sparsity.
37
54
38
55
Keras clustering API:
Original file line number Diff line number Diff line change 16
16
17
17
# We follow Semantic Versioning (https://semver.org/)
18
18
_MAJOR_VERSION = '0'
19
- _MINOR_VERSION = '6 '
19
+ _MINOR_VERSION = '7 '
20
20
_PATCH_VERSION = '0'
21
21
22
22
# 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