Tunstall coding

From HandWiki

In computer science and information theory, Tunstall coding is a form of entropy coding used for lossless data compression.

History

Tunstall coding was the subject of Brian Parker Tunstall's PhD thesis in 1967, while at Georgia Institute of Technology. The subject of that thesis was "Synthesis of noiseless compression codes" [1]

Its design is a precursor to Lempel–Ziv.

Properties

Unlike variable-length codes, which include Huffman and Lempel–Ziv coding, Tunstall coding is a code which maps source symbols to a fixed number of bits.[2]

Both Tunstall codes and Lempel–Ziv codes represent variable-length words by fixed-length codes.[3]

Unlike typical set encoding, Tunstall coding parses a stochastic source with codewords of variable length.

It can be shown[4] that, for a large enough dictionary, the number of bits per source letter can be arbitrarily close to [math]\displaystyle{ H(U) }[/math], the entropy of the source.

Algorithm

The algorithm requires as input an input alphabet [math]\displaystyle{ \mathcal{U} }[/math], along with a distribution of probabilities for each word input. It also requires an arbitrary constant [math]\displaystyle{ C }[/math], which is an upper bound to the size of the dictionary that it will compute. The dictionary in question, [math]\displaystyle{ D }[/math], is constructed as a tree of probabilities, in which each edge is associated to a letter from the input alphabet. The algorithm goes like this:

D := tree of [math]\displaystyle{ |\mathcal{U}| }[/math] leaves, one for each letter in [math]\displaystyle{ \mathcal{U} }[/math].
While [math]\displaystyle{ |D| \lt  C }[/math]:
    Convert most probable leaf to tree with [math]\displaystyle{ |\mathcal{U}| }[/math] leaves.

Example

Let's imagine that we wish to encode the string "hello, world". Let's further assume (somewhat unrealistically) that the input alphabet [math]\displaystyle{ \mathcal{U} }[/math] contains only characters from the string "hello, world" — that is, 'h', 'e', 'l', ',', ' ', 'w', 'o', 'r', 'd'. We can therefore compute the probability of each character based on its statistical appearance in the input string. For instance, the letter L appears thrice in a string of 12 characters: its probability is [math]\displaystyle{ 3 \over 12 }[/math].

We initialize the tree, starting with a tree of [math]\displaystyle{ |\mathcal{U}|=9 }[/math] leaves. Each word is therefore directly associated to a letter of the alphabet. The 9 words that we thus obtain can be encoded into a fixed-sized output of [math]\displaystyle{ \lceil \log_2(9) \rceil = 4 }[/math] bits.

Tunstall "hello, world" example — one iteration

We then take the leaf of highest probability (here, [math]\displaystyle{ w_1 }[/math]), and convert it to yet another tree of [math]\displaystyle{ |\mathcal{U}|=9 }[/math] leaves, one for each character. We re-compute the probabilities of those leaves. For instance, the sequence of two letters L happens once. Given that there are three occurrences of letters followed by an L, the resulting probability is [math]\displaystyle{ {1 \over 3} \cdot {3 \over 12} = {1 \over 12} }[/math].

We obtain 17 words, which can each be encoded into a fixed-sized output of [math]\displaystyle{ \lceil \log_2(17) \rceil = 5 }[/math] bits.

Tunstall "hello, world" example — two iterations

Note that we could iterate further, increasing the number of words by [math]\displaystyle{ |\mathcal{U}|-1=8 }[/math] every time.

Limitations

Tunstall coding requires the algorithm to know, prior to the parsing operation, what the distribution of probabilities for each letter of the alphabet is. This issue is shared with Huffman coding.

Its requiring a fixed-length block output makes it lesser than Lempel–Ziv, which has a similar dictionary-based design, but with a variable-sized block output.[clarification needed]

References

  1. Tunstall, Brian Parker (September 1967). Synthesis of noiseless compression codes. Georgia Institute of Technology. 
  2. http://www.rle.mit.edu/rgallager/documents/notes1.pdf, Study of Tunstall's algorithm at MIT
  3. "Variable to fixed length adaptive source coding - Lempel-Ziv coding". [1] [2]
  4. [3], Study of Tunstall's algorithm from EPFL's Information Theory department