aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/contrib/coder/ops
Commit message (Collapse)AuthorAge
* Make PmfToQuantizedCdf op to make adjustments if the sum of quantized pmf isGravatar Sung Jin Hwang2018-04-19
| | | | | | | | | | less than 2**precision. Prior to the change, the op did nothing when the sum of quantized pmf was less than 2**precision. While the produced CDF was valid for range coders, adjustments to CDF could be made to achieve better compression rate. PiperOrigin-RevId: 193558740
* Added PmfToQuantizedCdf op to contrib/coder in TensorFlow.Gravatar Sung Jin Hwang2018-04-13
| | | | | | | | | | | | | The added op transforms probability mass functions (PMF) to quantized cumulative distribution function (CDF), which can be used by range coder ops in contrib/coder. The op takes greedy approach to ensure that the post-quantization probability masses do not sum over the maximum quantized value. The op does not make any adjustment when the post-quantization probability masses already sum less than the maximum value. PiperOrigin-RevId: 192827779
* Add range encode and decode to new tensorflow contrib.Gravatar Sung Jin Hwang2018-01-17
PiperOrigin-RevId: 182293433