1. Field of the Invention
The present invention relates to the implementation of lossless and near-lossless source coding for multiple access networks.
2. Background Art
Source Coding
Source coding, also known as data compression, treats the problem of efficiently representing information for data transmission or storage.
Data compression has a wide variety of applications. In the area of data transmission, compression is used to reduce the amount of data transferred between the sources and the destinations. The reduction in data transmitted decreases the time needed for transmission and increases the overall amount of data that can be sent. For example, fax machines and modems all use compression algorithms so that we can transmit data many times faster than otherwise possible. The Internet uses many compression schemes for fast transmission; the images and videos we download from some bulletin boards are usually in a compressed format.
In the area of data storage, data compression allows us to store more information on our limited storage space by efficiently representing the data. For example, digital cameras use image compression schemes to store more photos on their memory cards, DVDs use video and audio compression schemes to store movies on portable disks, we could also utilize text compression schemes to reduce the size of text files on computer hard disks.
In many electronic and computer applications, data is represented by a stream of binary digits called bits (e.g., 0 and 1). Here is an example overview of the steps involved in compressing data for transmission. The compression begins with the data itself at the sender. An encoder encodes the data into a stream with a smaller number of bits. For example, an image file to be sent across a computer network may originally be represented by 40,000 bits. After the encoding the number of bits is reduced to 10,000. In the next step, the encoded data is sent to the destination where a decoder decodes the data. In the example, the 10,000 bits are received and decoded to give a reconstructed image. The reconstructed image may be identical to or different from the original image.
Here is another example of the steps involved in compressing data for storage. In making MP3 audio files, people use special audio compression schemes to compress the music and store them on the compact discs or on the memory of MP3 players. For example, 700 minutes of MP3 music could be stored on a 650 MB CD that normally stores 74 minutes of music without MP3 compression. To listen to the music, we use MP3 players or MP3 software to decode the compressed music files, and get the reconstructed music that usually has worse quality than the original music.
When transmitting digital data from one part of a computer network to another, it is often useful to compress the data to make the transmission faster. In certain networks, known as multiple access networks, current compression schemes have limitations. The issues associated with such systems can be understood by a review of data transmission, compression schemes, and multiple access networks.
Lossless and Lossy Compression
There are two types of compression, lossless and lossy. Lossless compression techniques involve no loss of information. The original data can be recovered exactly from the losslessly compressed data. For example, text compression usually requires the reconstruction to be identical to the original text, since very small differences may result in very different meanings. Similarly, computer files, medical images, bank records, military data, etc., all need lossless compression.
Lossy compression techniques involve some loss of information. If data have been compressed using lossy compression, the original data cannot be recovered exactly from the compressed data. Los Lossy compression is used where some sacrifice in reconstruction fidelity is acceptable in light of the higher compression ratios of lossy codes. For example, in transmitting or storing video, exact recovery of the video data is not necessary. Depending on the required quality of the reconstructed video, various amounts of information loss are acceptable. Lossy compression is widely used in Internet browsing, video, image and speech transmission or storage, personal communications, etc.
One way to measure the performance of a compression algorithm is to measure the rate (average length) required to represent a single sample, i.e. R=ΣxP(x)l(x), where l(x) is the length of the codeword for symbol x, P(x) is the probability of x. Another way is to measure the distortion, i.e., the average difference between the original data and the reconstruction.
Fixed-length Code
A fixed-length code uses the same number of bits to represent each symbol in the alphabet. For example, ASCII code is a fixed-length code: it uses 7 bits to represent each letter. The codeword for letter a is 1000011, that for letter A is 1000001, etc.
Variable-length Code
A variable-length code does not require that all codewords have the same length, thus we may use different number of bits to represent different symbols. For example, we may use shorter codewords for more frequent symbols, and longer codewords for less frequent symbols; thus on average we could use fewer bits per symbol. Morse code is an example of a variable-length code for the English alphabet. It uses a single dot (.) to represent the most frequent letter E, and four symbols: dash, dash, dot, dash (--.-)to represent the much less frequent letter Q.
Non-singular, Uniquely Decodable, Instantaneous, Prefix-free Code
A non-singular code assigns a distinct codeword to each symbol in the alphabet. A non-singular code provides us with an unambiguous description of each single symbol. However, if we wish to send a sequence of symbols, a non-singular code does not promise an unambiguous description. For the example given in Table 1, the first code assigns identical codewords to both symbol ‘1’ and symbol ‘2’, and thus is a singular code. The second code is a non-singular code, however, the binary description of the sequence ‘12’ is ‘110’, which is the same as the binary description of sequence ‘113’ and that of symbol ‘4’. Thus we cannot uniquely decode those sequences of symbols.
We define uniquely decodable codes as follows. A uniquely decodable code is one where no two sequences of symbols have the same binary description. That is to say, any encoded sequence in a uniquely decodable code has only one possible source sequence producing it. However, one may need to look at the entire encoded bit string before determining even the first symbol from the corresponding source sequence. The third code in Table 1 is an example of a uniquely decodable code for the source alphabet. On receiving encoded bit ‘1’, one cannot determine which of the three symbols ‘1’, ‘2’, ‘3’ is transmitted until future bits are received.
Instantaneous code is one that can be decoded without referring to future codewords. The third code is not instantaneous since the binary description of symbol ‘1’ is the prefix of the binary description of symbols ‘2’ and ‘3’, and the description of symbol ‘2’ is also the prefix of the description of symbol ‘3’. We call a code a prefix code if no codeword is a prefix of any other codewords. A prefix code is always an instantaneous code; since the end of a codeword is always immediately recognizable, it can separate the codewords without looking at future encoded symbols. An instantaneous code is also a prefix code, except for the case of multiple access source code where instantaneous code does not need to be prefix free (we will talk about this later). The fourth code in Table 1 gives an example of an instantaneous code that has the prefix free property.
The nesting of these definitions is: the set of instantaneous codes is a subset of the set of uniquely decodable codes, which is a subset of the set of non-singular codes.
Tree Representation
We can always construct a binary tree to represent a binary code. We draw a tree that starts from a single node (the root) and has a maximum of two branches at each node. The two branches correspond to ‘0’ and ‘1’ respectively. (Here, we adopt the convention that the left branch corresponds to ‘0’ and the right branch corresponds to ‘1’.) The binary trees for the second to the fourth code in Table 1 are shown in trees 100, 101 and 102 of
The codeword of a symbol can be obtained by traversing from the root of the tree to the node representing that symbol. Each branch on the path contributes a bit (‘0’ from each left branch and ‘1’ from each right branch) to the codeword. In a prefix code, the codewords always reside at the leaves of the tree. In a non-prefix code, some codewords will reside at the internal nodes of the tree.
For prefix codes, the decoding process is made easier with the help of the tree representation. The decoder starts from the root of the tree. Upon receiving an encoded bit, the decoder chooses the left branch if the bit is ‘0’ or the right branch if the bit is ‘1’. This process continues until the decoder reaches a tree node representing a codeword. If the code is a prefix code, the decoder can then immediately determine the corresponding symbol.
Block Code
In the example given in Table 1, each single symbol (‘1’, ‘2’, ‘3’, ‘4’) is assigned a codeword. We can also group the symbols into blocks of length n, treat each block as a super symbol in the extended alphabet, and assign each super symbol a codeword. This code is called a block code with block length n (or coding dimension n). Table 2 below gives an example of a block code with block length n=2 for the source alphabet given in Table 1.
Huffman Code
A Huffman code is the optimal (shortest average length) prefix code for a given distribution. It is widely used in many compression schemes. The Huffman procedure is based on the following two observations for optimal prefix codes. In an optimal prefix code:
The Huffman code design proceeds as follows. First, we sort the symbols in the alphabet according to their probabilities. Next we connect the two least probable symbols in the alphabet to a single node. This new node (representing a new symbol) and all the other symbols except for the two least probable symbols in the original alphabet form a reduced alphabet; the probability of the new symbol is the sum of the probabilities of its offsprings (i.e. the two least probable symbols). Then we sort the nodes according to their probabilities in the reduced alphabet and apply the same rule to generate a parent node for the two least probable symbols in the reduced alphabet. This process continues until we get a single node (i.e. the root). The codeword of a symbol can be obtained by traversing from the root of the tree to the leaf representing that symbol. Each branch on the path contributes a bit (‘0’ from each left branch and ‘1’ from each right branch) to the codeword.
The fourth code in Table 1 is a Huffman code for the example alphabet. The procedure of how we build it is shown in
Entropy Code
The entropy of source X is defined as: H(X)=−Σxp(x)log p(x). Given a probability model, the entropy is the lowest rate at which the source can be losslessly compressed.
The rate R of the Huffman code for source X is bounded below by the entropy H(X) of source X and bounded above by the entropy plus one bit, i.e., H(X)≦R<H(X)+1. Consider data sequence Xn=(X1,X2,X3, . . . ,Xn)where each element of the sequence is independently and identically generated. If we code sequence Xn using Huffman code, the resulting rate (average length per symbol) satisfies:
Thus when the block length (or coding dimension) n is arbitrarily large, the achievable rate is arbitrarily close to the entropy H(X). We call this kind of code ‘entropy code’, i.e., code whose rate is arbitrarily close to the entropy when coding dimension is arbitrarily large.
Arithmetic Code
Arithmetic code is another, increasingly popular, entropy code that is used widely in many compression schemes. For example, it is used in the compression standard JPEG-2001.
We can achieve efficient coding by using long blocks of source symbols. For example, for the alphabet given in Table 1, its Huffman code rate is 1.85 bits per symbol. Table 2 gives an example of a Huffman code for the corresponding extended alphabet with block length two; the resulting rate is 1.8375 bits per symbol showing performance improvement. However, Huffman coding is not a good choice for coding long blocks of symbols, since in order to assign codeword for a particular sequence with length n, it requires calculating the probabilities of all sequences with length n, and constructing the complete Huffman coding tree (equivalent of assigning codewords to all sequences with length n). Arithmetic coding is a better scheme for block coding; it assigns codeword to a particular sequence with length n without having to generate codewords for all sequences with length n. Thus it is a low complexity, high dimensional coding scheme.
In arithmetic coding, a unique identifier is generated for each source sequence. This identifier is then assigned a unique binary code. In particular, data sequence Xn is represented by an interval of the [0,1) line. We describe Xn by describing the mid-point of the corresponding interval to sufficient accuracy to avoid confusion with neighboring intervals. This mid-point is the identifier for Xn. We find the interval for xn recursively, by first breaking [0,1) into intervals corresponding to all possible values of x1, then breaking the interval for the observed X1 into subintervals corresponding to all possible values of X1x2, and so on. Given the interval A[0,1] for Xk for some 0≦k<n (the interval for X0 is [0,1)), the subintervals for {Xkxk+1} are ordered subintervals of A with lengths proportional to p(xk+1).
For the alphabet given in Table 1,
In arithmetic coding, the description length of data sequence xn is 1(xn)=┌−log px(xn)┐+1 where px(xn) is the probability of xn; this ensures the interval corresponding to different codewords are disjoint and the code is prefix free. Thus the average rate per symbol for arithmetic code is R=1/nΣxpX(xn)l(xn)=1/nΣxpX(xn)(┌−log pX(xn)┐+1). Rate R is then bounded as:
which shows R is arbitrarily close to the source entropy when coding dimension n is arbitrarily large.
Multiple Access Networks
A multiple access network is a system with several transmitters sending information to a single receiver. One example of a multiple access system is a sensor network, where a collection of separately located sensors sends correlated information to a central processing unit. Multiple access source codes (MASCs) yield efficient data representation for multiple access systems when cooperation among the transmitters is not possible. An MASC can also be used in data storage systems, for example, archive storage systems where information stored at different times is independently encoded but all information can be decoded together if this yields greater efficiency.
In the MASC configuration (also known as the Slepian-Wolf configuration) depicted in
The interest in near-lossless MASCs is inspired by the discontinuity in the achievable rate region associated with going from near-lossless to truly lossless coding. For example, if p(x,y)>0 for all (x,y) pairs in the product alphabet, then the optimal instantaneous lossless MASC achieves rates bounded below by H(X) and H(Y) in its descriptions of X and Y, giving a total rate bounded below by H(X)+H(Y). In contrast, the rate of a near-lossless MASC is bounded below by H(X,Y), which may be much smaller than H(X)+H(Y). This example demonstrates that the move from lossless coding to near-lossless coding can give very large rate benefits. While nonzero error probabilities are unacceptable for some applications, they are acceptable on their own for some applications and within lossy MASCs in general (assuming a suitably small error probability). In lossy MASCs, a small increase in the error probability increases the code's expected distortion without causing catastrophic failure.
MASC Versus Traditional Compression
To compress the data used in a multiple access network using conventional methods, people do independent coding on the sources, i.e., the two sources X and Y are independently encoded by the two senders and independently decoded at the receiver. This approach is convenient, since it allows for direct application of traditional compression techniques to a wide variety of multiple access system applications. However, this approach is inherently flawed because it disregards the correlation between the two sources.
MASC on the contrary, takes advantage of the correlation among the sources; it uses independent encoding and joint decoding for the sources. (Joint encoding is prohibited because of the isolated locations of the source encoders or some other reasons.)
For lossless coding, the rates achieved by the traditional approach (independent encoding and decoding) are bounded below by H(X) and H(Y) for the two sources respectively, i.e. RX≧H(X), and RX+RY≧H(X)+H(Y). The rates achieved by MASC are bounded as follows:
RX≧H(X|Y)
RY≧H(Y|X)
and
RX+RY≧H(X,Y).
When X and Y are correlated, H(X)>H(X|Y), H(Y)>H(Y|X) and H(X)+H(Y)>H(X,Y). Thus, MASCs can generally achieve better performance than the traditional independent coding approach.
Prior Attempts
A number of prior art attempts have been made to provide optimal codes for multiple access networks. Examples including H. S. Witsenhausen. “The Zero-Error Side Information Problem And Chromatic Numbers.” IEEE Transactions on Information Theory, 22:592–593, 1976; A. Kh. Al Jabri and S. Al-Issa. “Zero-Error Codes For Correlated Information Sources”. In Proceedings of Cryptography, pages 17–22, Cirencester, UK, December 1997; S. S. Pradhan and K. Ramchandran. “Distributed Source Coding Using Syndromes (DISCUS) Design And Construction”. In Proceedings of the Data Compression Conference, pages 158–167, Snowbird, Utah, March 1999. IEEE; and, Y. Yan and T. Berger. “On Instantaneous Codes For Zero-Error Coding Of Two Correlated Sources”. In Proceedings of the IEEE International Symposium on Information Theory, page 344, Sorrento, Italy, June 2000. IEEE.
Witsenhausen, Al Jabri, and Yan treat the problem as a side information problem, where both encoder and decoder know X, and the goal is to describe Y using the smallest average rate possible while maintaining the unique decodability of Y given the known value of X. Neither Witsenhausen nor Al Jabri is optimal in this scenario, as shown in Yan. Yan and Berger find a necessary and sufficient condition for the existence of a lossless instantaneous code with a given set of codeword lengths for Y when the alphabet size of X is two. Unfortunately their approach fails to yield a necessary and sufficient condition for the existence of a lossless instantaneous code when the alphabet size for X is greater than two. Prandhan and Ramchandran tackle the lossless MASC code design problem when source Y is guaranteed to be at most a prescribed Hamming distance from source X. Methods for extending this approach to design good codes for more general p.m.f.s p(x,y) are unknown.
Embodiments of the invention present implementations for multiple access source coding (MASC). The invention provides a solution for independently encoding individual sources and for decoding multiple source data points from the individually encoded streams in a single decoder. In a two source example, the invention provides a way to separately encode samples from data source x and date source y—using no collaboration between the encoders and requiring no knowledge of y by the encoder of x or vice versa—and a way to decode data pairs (x,y) using the individual encoded data streams for both x and y.
Embodiments of the present invention disclosed herein include algorithms for:
The algorithmic description includes methods for encoding, decoding, and code design for an arbitrary p.m.f. p(x,y) in each of the above four scenarios.
Other embodiments of the present invention are codes that give (a) identical descriptions and/or (b) descriptions that violate the prefix condition to some symbols. Nonetheless, the codes described herein guarantee unique decodability in lossless codes or near lossless codes with Pe<ε(ε fixed at code design in “near-lossless” codes). Unlike prior art which only discusses properties (a) and (b), the present invention gives codes that yield both types of descriptions. The present invention also gives definition of the class of algorithmns that can be used to generate the codes with properties (a) and (b).
One embodiment of the present invention provides a solution that partitions the source code into optimal partitions and then finds a matched code that is optimal for the given partition, in accordance to the aforementioned definition of the class of algorithmns. In one embodiment the source alphabet is examined to find combinable symbols and to create subsets of combinable symbols. These subsets are then partitioned into optimal groups and joined in a list. The successful groups from the list are then used to create complete and non-overlapping partitions of the alphabet. For each complete and non-overlapping partition, an optimal matched code is generated. The partition whose matched code provides the best rate is selected. In one embodiment, the matched code can be a Huffman code, an arithmetic code or any other existing form of lossless code.
Embodiments of the present invention can be used to provide lossless and near-lossless compression for a general compression solution for environments where multiple encoders encode information to be decoded by a single decoder or for environments where one or more encoders encode information to be decoded by a single decoder to which side information is available.
These and other features, aspects and advantages of the present invention will become better understood with regard to the following description, appended claims and accompanying drawings where:
Embodiments of the present invention relate to the implementation of lossless and near-near-lossless source coding for multiple access networks. In the following description, numerous specific details are set forth to provide a more thorough description of embodiments of the invention. It will be apparent, however, to one skilled in the art, that embodiments of the invention may be practiced without these specific details. In other instances, well known features have not been described in detail so as not to obscure the invention.
The invention provides a general data compression scheme for encoding and decoding of data from multiple sources that have been encoded independently. The invention can also be implemented in a side-information environment where one of the data sources is known to the decoder. Although the invention is a general solution for multiple data sources, the invention is described by an example of a two data source network.
The present invention is described herein and by way of example to two data sources X and Y that provide data stream x1, x2, x3, . . . xn and data stream y1, y2, y3, . . . yn respectively to dedicated encoders. The streams are provided to a single decoder that can produce decoded data pairs (xn, yn). Before describing embodiments of the invention, a summary of notations used in the example of the MASC problem is provided.
Notations in MASC
In describing the multiple access source coding (MASC) problem, we consider finite-alphabet memoryless data sources X and Y with joint probability mass function p(x,y) on alphabet X×Y. We use pX(x) and pY(y) to denote the marginals of p(x,y) with respect to X and Y. (The subscripts are dropped when they are obvious from the argument, giving pX(x)=p(x) and pY(y)=p(y)). A lossless instantaneous MASC for joint source (X,Y) consists of two encoders γX:X→{0,1}★ and γY:Y→{0,1}★ and a decoder γ−1:{0,1}★×{0,1}★→X×Y. Here a first dedicated encoder γX is encoding data source X which has alphabet x into strings of 0's and 1's (bits). A second dedicated encoder γY is doing the same for data source y which has alphabet Y. Then a single decoder γ−1 recovers x and y from the encoded data streams. γX(x) and γY(y) denote the binary descriptions of x and y and the probability of decoding error is Pe=Pr(γ−1(γX(X), γY(Y))≠(X,Y)). Pe is the probability of occurrence for the discrepancy between the decoded data and the original data. Here, we focus on instantaneous codes, where for any input sequences x1,x2,x3 . . . and y1,y2,y3 . . . with p(x1,y1)>0 the instantaneous decoder reconstructs (x1,y1) by reading only the first |γX(x1)| bits from γX(x1)γX(x2)γX(x3) . . . and the first |γY(Y1)| bits from γY(Y1)γY(Y2)γY(Y3) . . . (without prior knowledge of these lengths).
The present invention provides coding schemes for the extension of Huffman coding to MASCs (for optimal lossless coding and for near-lossless coding), the extension of arithmetic coding to MASCs (for low complexity, high dimension lossless coding and for near-lossless coding). The embodiments of the invention are described with respect to two environments, one, lossless side-information coding, where one of the data sources is known to the decoder, and another environment, the general case, where neither of the sources must be independently decodable.
To further describe this embodiment of the present invention, we begin by developing terminology for describing, for a particular code, which symbols from Y have binary descriptions that are identical and which have binary descriptions that are prefixes of each other. This embodiment of the present invention defines a “group” for which codes can be designed to describe its nested structure instead of designing codes for symbols. The invention also defines partitions, which are optimal for a particular coding scheme (Huffman coding or arithmetic coding). Finally, the invention describes matched codes which satisfy particular properties for partitions and coding schemes. The goal in code design in the present application is to find the code that minimizes λRx+(1−λ)Ry for an arbitrary value of λ∈[0,1]. The result is codes with intermediate values of RX and RY. In some cases the goal is to design code that minimizes λRX+(1−λ)RY with probability of error no greater than Pe.
Lossless Side-Information Coding
One embodiment of the present invention presents an implementation for lossless side-information source coding. This problem is a special case of the general lossless MASC problem. (In a general MASC, the decoder has to decode both sources (i.e. X and Y) without knowing either one). By contrast, in the side-information application, one of data sources is known to the decoder. The goal is to find an optimal way to encode one of the data sources given the other source is known.
The invention will be described first in connection with a lossless, side-information MASC solution. Later we describe other embodiments of the invention for a lossless general MASC solution, and embodiments for near-lossless side-information and general MASC solutions.
A necessary and sufficient condition for γY to be a lossless instantaneous code for Y given side information X is: for each x∈X, y,y′∈Ax implies that γY(Y) and γY(Y′) satisfy the prefix condition (that is, neither binary codeword is a prefix of the other codeword), where Ax={y∈Y:p(x,y)>0}.
It is important to note that instantaneous coding in a side-information MASC requires only that {γY(Y):y∈Ax} be prefix-free for each x∈X and not that {γY(Y):y∈Y} be prefix-free, as would be required for instantaneous coding if no side-information were available to the decoder. This is because once the decoder knows X, it eliminates all y′∉Ax (since y′∉Ax implies p(X,y′)=0). Since all codewords for y∈Ax satisfy the prefix condition, the decoder can use its knowledge of X to instantaneously decode Y.
Thus the optimal code may violate the prefix condition either by giving identical descriptions to two symbols (having two y symbols be encoded by the same codeword: γY(Y)=γY(Y′) for some y≠y′ or by giving one symbol a description that is a proper prefix of the description of some other symbols. We write γY(Y)≦γY(Y′) if the description of y is a prefix of the description of y′ where y≠y′; and γY(Y)>γY(Y′) if γY(Y) is a proper prefix of γY(Y′) meaning we disallow the case of γY(Y)=γY(Y′).
Invention Operation
We will illustrate the operation of the present invention with the data set of Table 3. Table 1 gives a sample joint probability distribution for sources X and Y, with alphabets X=Y={a0,a1, . . . ,a7}.
Combinable Symbols
At step 402 of
Symbols y1, y2∈Y can be combined under p(x,y) if p(x,y1)p(x,y2)=0 for each x∈X. At step 501 of
In checking combinability, the first y symbol a0 is examined and compared to symbols a1-a7. a0 is combinable with a1 because p(x,a0)·p(x,a1)=0∀x∈X. However, a0 is not combinable with a2 because p(x,a0)·p(x,a2)>0 for x=a0, x=a2. At step 503 it is determined if each y symbol has been checked and a set Cy has been generated. If not, the system returns to step 501 and repeats for the next y symbol. If ally symbols have been checked at step 503, all of the sets Cy have been generated. Using the example of Table 3, the generated sets Cy for each symbol are shown below in Table 4.
Continuing with
Groups
We call symbols y,y′∈Y “combinable” if there exists a lossless instantaneous side-information code in which γY(Y)≦γY(Y′). If we wish to design a code with γY(Y)=γY(Y′), then we join those symbols together in a “1-level group.” If we wish to give one 1-level group a binary description that is a proper prefix of the binary description of other 1-level groups, then we build a “2-level group.” These ideas generalize to M-level groups with M>2.
The mathematical and algorithmical representations of the flow diagrams of
A 2-level group for p(x,y) denoted by G=(R:C(R)) comprises a root R and its children C(R), where R is a 1-level group, C(R) is a set of 1-level groups, and for each G′∈C(R), each pair y1∈R and y2∈G′ can be combined under p(x,y). Here members of all G′∈C(R) are called members of C(R), and members of R and C(R) are called members of G. In the tree representation T(G) for G, T(R) is the root of T(G) and the parent of all subtrees T(G′) for G′∈C(R).
This ideas generalize to M-level groups. For each subsequent M>2, an M-level group for p(x,y) is a pair G=(R:C(R)) such that for each G′531 C(R), each pair y1∈R and y2∈G′ can be combined under p(x,y). Here R is a 1-level group and C(R) is a set of groups of M−1 or fewer levels, at least one of which is an (M−1)-level group. The members of R and C(R) together comprise the members of G=(R:C(R)). Again, T(R) is the root of T(G′) and the parent of all subtrees T(G′) for G′∈C(R). For any M>1, an M-level group is also called a multi-level group.
We use the probability mass function (p.m.f.) in Table 1, with X=Y={a0,a1, . . . , a6,a7}, to illustrate these concepts. For this p.m.f., (a0,a4, a7) is one example of a 1-level group since p(x,a0)p(x,a4)=0,p(x,a0)p(x,a7)=0 and p(x,a4)p(x,a7)=0 for all x∈X. (This is seen in Table 2 as the entries for a0). The pair (a4,a7), a subset of (a0,a4,a7), is a distinct 1-level group for p(x,y). The tree representation for any 1-level group is a single node.
An example of a 2-level group for p(x,y) is G2=((a4):{(a0), (a2,a7), (a6)}). In this case the root node R=(a4) and C(R)={(a0), (a2,a7), (a6)}. The members of C(R) are {a0,a2,a6,a7}; the members of G2 are {a0,a2,a4,a6,a7}. Here G2 is a 2-level group since symbol a4 can be combined with each of a0,a2,a6,a7 and (a0), (a2,a7), (a6) are 1-level groups under p.m.f. p(x,y). The tree representation T(G2) is a 2-level tree. The tree root has three children, each of which is a single node.
An example of a 3-level group for p(x,y) is G3=((a7):{(a0), a1), ((a2):{(a4), (a5)})}). In T(G3), the root T(G7) of the three-level group has three children: the first two children are nodes T(G0) and T(G1); the third child is a 2-level tree with root node T(a2) and children T(a4) and T(a5). The tree representation T(G3) is a 3-level tree.
Optimal Groups
The partition design procedure for groups is recursive, solving for optimal partitions on sub-alphabets in the solution of the optimal partition on Y. For any alphabet Y′Y, the procedure begins by making a list Ly′ of all (single- or multi-level) groups that can appear in an optimal partition P(Y′) of Y′ for p(x,y). The list is initialized as Ly′={(y):y∈Y′}. For each symbol y∈Y′, we wish to add to the list all groups that have y as one member of the root, and some subset of Y′ as members. To do that, we find the set Cy={z∈Y′:z can be combined with y under p(x,y)}. For each non-empty subset SCy such that Ly′ does not yet contain a group with elements S∪{y}, we find the optimal partition P(S) of S for p(x,y) We construct a new multi-level group G with elements S∪{y} by adding y to the empty root of T(P(S)) if P(S) contains more than one group or to the root of the single group in P(S) otherwise. Notice that y can be the prefix of any symbol in S. Since y can be combined with all members of S∪{y}, y must reside at the root of the optimal partition of S∪{y}; thus G is optimal not only among all groups in {G′:members of G′ are S∪{y} and y is at the root of G} but among all groups in {G′:members of G′ are S∪{y}}. Group G is added to the Ly′, and the process continues.
After this is accomplished, the list of optimal groups (step 404 of
Optimal Partitions Design
After the list of optimal groups has been created, it is used to create optimal (complete and non-overlapping) partitions. (A more thorough partition definition will be introduced in a later section titled “Optimal Partition: Definition and Properties.”) Complete and non-overlapping means that all symbols are included but none are included more than once. Referring to
The operations of
and GjGk=φ for any j≠k, where each Gi∈P(Y) is a group for p(x,y), and Gj∪Gkand Gj∩Gkrefer to the union and intersection respectively of the members of Gj and Gk. The tree representation of a partition is called a partition tree. The partition tree T(P(Y)) for partition P(Y)={G1,G2, . . . , Gm} is built as follows: first, construct the tree representation for each Gj; then, link the root of all T(Gi), i∈{1, . . . ,m} to a single node, which is defined as the root r of T(P(Y)). A partition tree is not necessarily a regular k-ary tree; the number of children at each node depends on the specific multi-level group.
After constructing the above list of groups, we recursively build the optimal partition of Y′ for p(x,y). If any group G∈Ly′ contains all of the elements of Y′, then P(Y′)={G} is the optimal partition on Y′. Otherwise, the algorithm systematically builds a partition, adding one group at a time from Ly′ to set P(Y′) until P(Y′) is a complete partition. For G∈Ly′ to be added to P(Y′), it must satisfy: (1) G∩G′=∅; and (2) G, G′ cannot be combined (see Theorem 4 for arithmetic or Theorem 5 for Huffman coding) for all G′∈P(Y′).
As a prelude to generating matched code for optimal partitions, the branches of a partition are labeled. We label the branches of a partition tree as follows. For any 1-level group g at depth d in T(P(Y)), let n describe the d-step path from root r to node T(G) in T(P(Y)). We refer to g by describing this path. Thus T(n)=T(G). For notational simplicity, we sometimes substitute n for T(n) when it is clear from the context that we are talking about the node rather than the 1-level group at that node (e.g. n∈T(P(Y))) rather than T(n)∈T(P(Y)). To make the path descriptions unique, we fix an order on the descendants of each node and number them from left to right. Thus n's children are labeled as n1, n2, . . . , nK(n), where nk is a vector created by concatenating k to n and K(n) is the number of children descending from n. The labeled partition tree for
The node probability q(n) of a 1-level group n with n∈T(P(Y)) is the sum of the probabilities of that group's members. The subtree probability Q(n) of the 1-level group at node n∈T(P(Y)) is the sum of probabilities of n's members and descendants. In
Referring to
Matched Code Generation
After creating partitions, the present invention determines the optimal partitions by generating matched code for each partition. The partition whose matched code has the best rate (of compression) is the partition to use for the MASC solution. These steps are described in
Referring to
A matched code for a partition is defined as follows. A matched code γY for partition P(Y) is a binary code such that for any node n∈T(P(Y)) and symbols y1, y2∈n and y3∈nk, k∈{1, . . . , K(n)}: (1) γY(Y1)=γY(Y2); (2) γY(Y1)>γY(Y3); (3) {γY(nk):k∈{1, . . . , K(n)}} is prefix-free. We here focus on codes with a binary channel alphabet {0,1}. The extension to codes with other finite channel alphabets is straight forward and the present invention is not limited to a binary channel alphabet. (We use γY(n) interchangeably with γY(Y) for any y∈n.) If symbol y∈Y belongs to 1-level group g, then γY(Y) describes the path in T(P(Y)) from r to T(G); the path description is a concatenated list of step descriptions, where the step from n to nk, k∈{1, . . . , K(n)} is described using a prefix-code on {1, . . . , K(n)}. An example of a matched code for the partition of
In the above framework, a partition specifies the prefix and equivalence relationships in the binary descriptions of y∈Y. A matched code is any code with those properties. The above definitions enforce the condition that for any matched code, y1, y2∈Ax for some x∈X implies that γY(Y1)γY(Y2); that is, γY violates the prefix property only when knowing X eliminates all possible ambiguity.
Theorem 1 establishes the equivalence of matched codes and lossless side-information codes.
Theorem 1 Code γY is a lossless instantaneous side-information code for p(x,y) if and only if γY is a matched code for some partition P(Y) for p(x,y).
Proof: First we prove that a matched code for partition P(Y) is a lossless instantaneous side-information code for Y. This proof follows from the definition of a matched code. In a matched code for partition P(Y), only symbols that can be combined can be assigned codewords that violate the prefix condition, thus only symbols that can be combined are indistinguishable using the matched code description. Since symbols y1 and y2 can be combined only if p(x,y1)p(x,y2)=0 for all x∈X, then for each x∈X, the matched code's codewords for Ax={y∈Y:p(x,y)>0} is prefix free. Thus the decoder can decode the value of X and then losslessly decode the value of Y using the instantaneous code on Ax.
Next we prove that a lossless instantaneous side-information code γY must be a matched code for some partition P(Y) on y for p(x,y). That is given γY, it is always possible to find a partition P(Y) on Y for p(x,y), such that N={γY(Y):y∈Y} describes a matched code for P(Y).
Begin by building a binary tree T2 corresponding to N as follows. Initialize T2 as a fixed-depth binary tree with depth max maxyεY|γY(Y)|. For each y∈Y, label the tree node reached by following path γY(Y) downward from the root of the tree (here ‘0’ and ‘1’ correspond to left and right branches respectively in the binary tree). Call a node in T2 empty if it does not represent any codeword in N and it is not the root of T2; all other nodes are non-empty. When it is clear from the context, the description of a codeword is used interchangeably with the description of the non-empty node representing it.
Build partition tree T from binary tree T2 by removing all empty nodes except for the root as follows. First, prune from the tree all empty nodes that have no non-empty descendants. Then, working from the leaves to the root, remove all empty nodes except for the root by attaching the children of each such node directly to the parent of that node. The root is left unchanged. In T:
(3) The set of codewords descending from the same node satisfies the prefix condition. Thus T is a partition tree for some partition P(Y) for p(x,y) and N is a matched code for P(Y). □
Given an arbitrary partition P(Y) for p(x,y), we wish to design the optimal matched code for P(Y). In traditional lossless coding, the optimal description lengths are l★(y)=−log p(y) for all y∈Y if those lengths are all integers. Theorem 2 gives the corresponding result for lossless side-information codes on a fixed partition P(Y).
Theorem 2 Given partition P(Y) for p(x,y), the optimal matched code for P(Y) has description lengths lP(Y)★(r)=0 and
for all n∈T(P(Y)) and k∈{1, . . . ,K(n)} if those lengths are all integers. Here lP(Y)★(n)=l implies lP(Y)★(y)=l for all symbols y∈Y that are in 1-level group n.
Proof: For each internal node n∈T(P(Y)), the codewords {γY(nk):k∈{1, . . . , K(n)}} share a common prefix and satisfy the prefix condition. Deleting the common prefix from each codeword in {γY(nk):k=1, . . . , K(n)} yields a collection of codeword suffixes that also satisfy the prefix condition. Thus if lP(Y)(n) is the description length for n, then the collection of lengths {lP(Y)(nk)−lP(Y)(n): k=1, . . . ,K(n)} satisfies the Kraft Inequality:
Σk=1K(n)2−(l
(Here lP(Y)(r)=0 by definition.) We wish to minimize the expected length
of the matched code over all lP(Y)(n) that satisfy
∀n∈I(P(Y))={n∈T(P(Y)):K(n)>0}.
(We here neglect the integer constraint on code lengths.) If
u(n)=2−l
then
Since
Differentiating with respect to u(n) and setting the derivative to 0, we get
First consider all nk's at the lowest level of the tree that have the same parent n. We have
Thus we get
Other nodes at the lowest level are processed in the same way.
Now fix some n1 two levels up from the tree bottom, and consider any node n1k.
Case 1: If n1k has children that are at the lowest level of the tree, then by (1),
Substituting (3) into (4) gives
which is the same as (6).
Considering all such n1k, k=1, . . ., K(n1) we have
which is the same problem as (2) and is solved in the same manner.
Continuing in this way (from the bottom to the top of T(P(Y)), we finally obtain
Setting lP(Y)★(nk)=−log u(nk) completes the proof. □
Thus, Theorem 2 provides a method of calculating the optimal length function. We now present three strategies for building matched codes that approximate the optimal length function of Theorem 2.
For any node n with K(n)>0, the first matched code γY,P(Y)(S) describes the step from n to nk using a Shannon code with alphabet {1, . . . ,K(n)} and p.m.f.
{Q(nk)/Σj=1K(n)Q(nj)}k=1K(n);
the resulting description lengths are
lP(Y)(S)(r)=0
and
lP(Y)(S)(nk)=lP(Y)(S)(n)+┌ log2(Σj=1K(n)Q(nj)/(Q(nk))┐.
Codes γY,P(Y)(H) and γY,P(Y)(A), replace the Shannon codes of γY,P(Y)(S) with Huffman and arithmetic codes, respectively, matched to the same p.m.f.s.
Matched Huffman Coding
As an example, build the matched Huffman code for the partition in
{pY(a3)+pY(a6)pY(a7)+pY(a0)+pY(a1)+pY(a2)+pY(a4)+pY(a5)}={0.21, 0.79};
a Huffman code for these two branches is {0,1}. Referring to
At step 1102, for each subsequent tree node n with K(n)>0, consider {nk}k=1K(n) as a new set, and do Huffman code design on this set, with p.m.f
{Q(nk)/Σj=1K(n)Q(nj)}k=1K(n).
We first design a Huffman code for group (a7)'s children {(a0), (a2), (a2)} according to p.m.f.
{pY(a0)/Q,pY(a1)/Q,pY(a2)+pY(a4)+pY(a5)/Q}={0.1/Q,0.19/Q,0.37/Q}
where
Q=pY(a0)+pY(a1)+pY(a2)+pY(a4)+pY(a5)=0.66;
a Huffman code for this set of branches is
{00, 01, 1}.
Then we design Huffman code {0, 1} for groups {(a4), (a5)} with p.m.f.
{pY(a4)/pY(a4)+pY(a5)),pY(a5)/(pY(a4)+pY(a5))}={0.11/0.17, 0.06/0.17}.
The full codeword for any node n is the concatenation of the codewords of all nodes traversed in moving from root T(r) to node n in T. The codewords for this example are shown in
Any “matched Huffman code”′ γY,P(Y)(H) is shown to be optimal by Theorem 3.
Theorem 3 Given a partition P(Y), a matched Huffman code for P(Y) achieves the optimal expected rate over all matched codes for P(Y).
The average length
where for each
k∈{1, . . . ,K(r)},
Δ
Note that Σk=1K(r)Q(k)l(k) and {Δ
In matched Huffman coding, working from the top to the bottom of the partition tree, we first minimize Σk=1K(r)Q(k)l(k) over all integer lengths l(k) by employing Huffman codes on Q(k). We then minimize each Δ
Matched Arithmetic Coding
In traditional arithmetic coding (with no side-information), the description length of data sequence
yn is l(yn)=┌−log pY(yn)┐+1
where pY(Yn) is the probability of yn. In designing the matched arithmetic code of yn for a given partition P(Y), we use the decoder's knowledge of xn to decrease the description length of yn. The following example, illustrated in
In traditional arithmetic coding as shown in
In matched arithmetic coding for partition P(Y) as shown in
(here p(A)(n) is defined to equal 1 for the unique node r at depth 0). Refining the interval for sequence Yl−1 to find the subinterval for Yl involves finding the 1-level group n∈P(Y) such that Yi∈n and using d(n) to calculate the appropriate p(A) values and break the current interval accordingly. We finally describe Yn by describing the center of its corresponding subinterval to an accuracy sufficient to distinguish it from its neighboring subintervals. To ensure unique decodability,
l(A)(yn)=┌−log p(A)(yn)┐+1,
where p(A)(yn) is the length of the subinterval corresponding to string yn. Given a fixed partition P(Y), for each y∈Y denote the node where symbol y∈Y resides by n(y), and let n0(y) represent the parent of node y. Then
where l★( ) is the optimal length function specified in Theorem 2. Thus the description length l(A)(yn) in coding data sequence yn using a 1-dimensional “matched arithmetic code” γY,P(Y)(A) satisfies (1/n)l(A)(yn)<(1/n)Σl=1nl★(yl)+2/n, giving a normalized description length arbitrarily close to the optimum for n sufficiently large. We deal with floating point precision issues using the same techniques applied to traditional arithmetic codes.
As an example, again consider the p.m.f. of Table 3 and the partition of
If Y1∈{a0,a1,a2}, [0,1) is broken into subintervals [0, 0.21) for group (a3,a6), [0.21, 0.33) for group (a0), [0.33, 0.56) for group (a1), and [0.56, 1) for group (a2) since
Finally, if Y1∈{a4,a5}, [0, 1) is broken into subintervals [0, 0.21) for group (a3, a6), [0.21, 0.33) for group (a0), [0.33, 0.56) for group (a1), [0.56, 0.84) for group (a4), and [0.84, 1) for group (a5) since
Notice that the intervals of some symbols overlap in the matched arithmetic code. For example, the intervals associated with symbols a4 and a5 subdivide the interval associated with symbol a2 in the previous example. These overlapping intervals correspond to the situation where one symbol's description is the prefix of another symbol's description in matched Huffman coding. Again, for any legitimate partition P(Y), the decoder can uniquely distinguish between symbols with overlapping intervals to correctly decode Yn using its side information about Xn.
Optimal Partitions: Definitions and Properties
The above describes optimal Shannon, Huffman, and arithmetic codes for matched lossless side-information coding with a given partition P(Y). The partition yielding the best performance remains to be found. Here we describe finding optimal partitions for Huffman and arithmetic coding.
Given a partition P(Y), let lP(Y)(H) and lP(Y)★ be the Huffman and optimal description lengths respectively for P(Y). We say that P(Y) is optimal for matched Huffman side-information coding on p(x,y) if ElP(Y)(H)(Y)≦ElP′(Y)(H)(Y) for any other partition P′(Y) for p(x,y) (and therefore, by Theorems 1 and 3, ElP(Y)(H)(Y)≦El(Y) where l is the description length for any other instantaneous lossless side-information code on p(x,y). We say that P(Y) is optimal for matched arithmetic side-information coding on p(x,y) if ElP(Y)★(Y)≦ElP′(Y)★(Y) for any other partition P′(Y) for p(x,y).
Some properties of optimal partitions follow. Lemma 2 demonstrates that there is no loss of generality associated with restricting our attention to partitions P(Y) for which the root is the only empty internal node. Lemma 3 shows that each subtree of an optimal partition tree is an optimal partition on the sub-alphabet it describes. Lemmas 2 and 3 hold under either of the above definitions of optimality. Lemma 4 implies that an optimal partition for matched Huffman coding is not necessarily optimal for arithmetic coding, as shown in Corollary 1. Properties specific to optimal partitions for Huffman coding or optimal partitions for arithmetic coding follow.
Proof: If any non-root node n of partition P(Y) is empty, then removing n, so {nk}k=1K(n) descend directly from n's parent, gives new partition P′(Y). Any matched code on P(Y), including the optimal matched code on P(Y), is a matched code on P′(Y). If n has exactly one child, then combining n and its child yields a legitimate partition P′(Y); the optimal matched code for P′(Y) yields expected rate no worse than that of the optimal matched code for P(Y). □
Lemma 3 If T1, . . . ,Tm are the subtrees descending from any node n in optimal partition P★(Y) for p(x,y), then the tree where {T1, . . . ,Tm} descend from an empty root is identical to T(P★(Ŷ)) where P★(Ŷ) is an optimal partition of Ŷ=∪l=1mTi for p(x,y).
Proof: Since the matched code's description can be broken into a description of n followed by a matched code on {T1, . . . ,Tm} and the corresponding description lengths add, the partition described by T(P(Y)) cannot be optimal unless the partition described by {T1, . . . , Tm} is. □
Lemma 4 Let p1 and p2 denote two p.m.f.s for alphabet Y1 and Y2 respectively, and use H(p) and R(H)(p) to denote the entropy and expected Huffman coding rate, respectively, for p.m.f. p. Then, H(p1)≧H(p2) does not imply R(H)(p1)≧R(H)(p2).
Proof: The following example demonstrates this property. Let p1={0.5, 0.25, 0.25}, p2={0.49, 0.49, 0.02} then H(p1)=1.5, H(p2)=1.12. However, the rate of the Huffman tree for p1 is 1.5, while that for p2 is 1:51. □
Proof: The following example demonstrates this property. Let alphabet Y={b0,b1,b2,b3,b4} have marginal p.m.f. {0.49, 0.01, 0.25, 0.24, 0.01}, and suppose that P1(Y)={(b0,b1), (b2), (b3,b4)} and P2(Y)={(b0), (b2,b3), (b1,b4)} are partitions of Y for p(x,y). The node probabilities of P1(Y) and P2(Y) are p1={0.5, 0.25, 0.25} and p2={0.49, 0.49, 0.02}, respectively. By the proof of Lemma 4, P1(Y) is a better partition for Huffman coding while P2(Y) is better for arithmetic coding. □
In the arguments that follow, we show that there exist pairs of groups (GI, GJ) such that GI∩GJ=∅; but GI and GJ cannot both descend from the root of an optimal partition. This result is derived by showing conditions under which there exists a group G★ that combines the members of GI and GJ and for which replacing {GI, GJ} with {G★} in P(Y) guarantees a performance improvement.
The circumstances under which “combined” groups guarantee better performance than separate groups differ for arithmetic and Huffman codes. Theorems 4 and 5 treat the two cases in turn. The following definitions are needed to describe those results.
We say that 1-level groups G1 and G2 (or nodes T(G1) and T(G2)) can be combined under p(x,y) if each pair y1∈G1, y2∈G2 can be combined under p(x,y).
If GI, Gj∈P(Y), so that GI and Gj extend directly from the root r of T(P(Y) and nodes I and J are the roots of T(GI) and T(GJ), and Go denotes the 1-level group at some node o in T(GJ), we say that GI can be combined with GJ at no if (1) I can be combined with no and each of no3 s descendants in T(GJ) and (2) no and each of no's ancestors in T(GJ) can be combined with I and each of I's descendants in T(GI). The result of combining GI with GJ at Go is a new group G★. Group G★ modifies GJ by replacing Go with 1-level group (I,Go) and adding the descendants of I (in addition to the descendants of Go) as descendants of (I,Go) in T(G★).
Lemma 5 For any constant A>0, the function f′(x)=x log (1+A/x) is monotonically increasing in x for all x>0.
Proof: The 1st order derivative of f(x) is f′(x)=log (1+A/x)−A/(x+A). Let u=A/x, g(u)=f′(x)|x=A/u=log(1+u)−u/(u+1), then u≧0 and g(0)=0. The 1st order derivative of g(u) is g′(u)=u/(u+1)2. For any u>0, g′(u)>0, thus g(u)>0. So for any x>0, f′(x)>0, that is, f(x) is monotonically increasing in x. □
Theorem 4 Let P(Y)={G1, . . . Gm} be a partition of y under p(x,y). Suppose that GI∈P(Y) can be combined with GJ∈P(Y) at Go, where Go is the 1-level group at some node no of T(GJ). Let P∈(Y) be the resulting partition. Then ElP★(Y)★(Y)≦ElP(Y)★(Y).
Proof: Let no=Jj1, . . . jM=npjM, so that no's parent is np. Define S1={Jj1 . . . ji:1≦i≦M} (i.e. the set of nodes on the path to no, excluding node J); S2={n∈T(GJ): is n the sibling of node s}, s∈S1, S3=(S1{J}){no}c (i.e. the set of nodes on the path to no, excluding node no). For any node n∈T(P(Y)), let Qn and qn denote the subtree and node probabilities respectively of node n in T(P(Y)), and define ΔQn=Qn−qn=ΣJ=1K(n)Qnj. Then
Note that the sum of the subtree probabilities of GI and GJ equals the subtree probability of G★, and thus the optimal average rate of the groups in P(Y){GI, GJ}c are not changed by the combination. Thus if (
where Δl1 represents the portion of the average rate unchanged by the combination of GI and GJ.
It follows that Δ
Similarly, using ΔlJ as the portion of
Thus Δ
Unfortunately, Theorem 4 does not hold for matched Huffinan coding. Theorem 5 shows a result that does apply in Huffinan coding.
Theorem 5 Given partition P(Y) of Y on p(x,y), if GI, GJ∈ P(Y) satisfy: (1) GI is a 1-level group and (2) GI can be combined with GJ at root J of T(GJ) to form partition P★(Y) then ElP★y(H)(Y)≦ElP(Y)(H)(Y).
Proof: Let α denote the matched Huffmnan code for P(Y), and use αI and αJ to denote this code's binary descriptions for nodes I and J . The binary description for any symbol in GI equals αI(α(y)=αI for each y∈GI) while the binary description for any symbol in GJ has prefix αJ(α(y)=αJα′(y) for each y∈GJ, where α′ is a matched Huffman code for GJ). Let αmin be the shorter of αI and αJ. Since α is a matched Huffman code for P(Y) and P★(Y) is a partition of on p(x,y),
is a matched code for P★(Y). Further, |αmin|≦|αI| and |αmin|≦|αJ| imply that the expected length of α★(Y) is less than or equal to the expected length of α(Y) (but perhaps greater than the expected length of the matched Huffman code for P★(Y)).
General Lossless Instantaneous MASCs: Problem Statement, Partition Pairs, and Optimal Matched Codes
We here drop the side-information coding assumption that X (or Y) can be decoded independently and consider MASCs in the case where it may be necessary to decode the two symbol descriptions together. Here, the partition P(Y) used in lossless side-information coding is replaced by a pair of partitions (P(X, P(Y)). As in side-information coding, P(X) and P(Y) describe the prefix and equivalence relationships for descriptions {γX(X):x∈X} and {γY(Y):y∈y}, respectively. Given constraints on (P(X), P(Y)) that are both necessary and sufficient to guarantee that a code with the prefix and equivalence relationships described by (P(X), P(Y)) yields an MASC that is both instantaneous and lossless, Theorem 1 generalizes easily to this coding scenario, so every general instantaneous lossless MASC can be described as a matched code on P(X) and a matched code on P(Y) for some (P(X), P(Y)) satisfying the appropnate constraints.
In considering partition pairs (P(X), P(Y)) for use in lossless instantaneous MASCs, it is necessary but not sufficient that each be a legitimate partition for side information coding on its respective alphabet. (If P(Y) fails to uniquely describe Y when the decoder knows X exactly, then it must certainly fail for joint decoding as well. The corresponding statement for P(X) also holds. These conditions are, however, insufficient in the general case, because complete knowledge of X may be required for decoding with P(Y) and vice versa.) Necessary and sufficient conditions for (P(X), P(Y)) to give an instantaneous MASC and necessary and sufficient conditions for (P(X), P(Y)) to give a lossless MASC follow.
For (P(X), P(Y)) to yield an instantaneous MASC, the decoder must recognize when it reaches the end of γX(X) and γY(Y). The decoder proceeds as follows. We think of a matched code on p as a multi-stage descriptiowith each stage corresponding to a level in T(P). Starting at the roots of T(P(X)) and T(P(Y)), the decoder reads the first-stage descriptions of γX(X) and γY(Y), traversing the described paths from the roots to nodes nx and ny in partitions T(P(X)) T(P(Y)) respectively. (The decoder can determine that it has reached the end of a single stage description if and only if the matched code is itself instantaneous.) If either of the nodes reached is empty, then the decoder knows that it must read more of the description; thus we assume, without loss of generality, that nx and ny are not empty. Let Tx and Ty be the subtrees descending from nx and ny (including nx and ny respectively). (The subtree descending from a leaf node is simply that node.) For instantaneous coding, one of the following conditions must hold:
Under condition (A), the decoder recognizes that it has reached the end of γX(X) and γY(Y). Under condition (B), the decoder recognizes that it has not reached the end of γX(Y) and reads the next stage description, traversing the described path in T(P(Y)) to node n′with subtree T′y. Condition (C) similarly leads to a new node n′x and subtree T′x. If none of these conions holds, then the decoder cannot determine whether to continue reading one or both of the descriptions, and the code cannot be instantaneous. The decoder continues traversing T(P(X)) and T(P(Y)) until it determines the 1-level groups nx and ny with X∈nx and Y∈ny. At each step before the decoding halts, one (or more) of the conditions (A), (B), and (C) must be satisfied.
For (P(X), P(Y)) to give a lossless MASC, for any (x,y)∈X×Y with p(x,y)>0 following the above procedure on (γX(X), γY(Y)) must lead to final nodes (nx, ny) that satisfy:
(D)(x,y)∈nx×ny and for any other x′∈nx and y′∈ny,p(x,y′)=p(x′,y)=p(x′,y′)=0
The following lemma gives a simplified test for determining whether partition pair (P(X), P(Y)) yields a lossless instantaneous MASC. We call this test the MASC prefix condition. Lemma 6 reduces to Lemma 1 when either P(x)={{x}:x∈X} or P(Y)={{y}:y∈y}. In either of these cases, the general MASC problem reduces to the side information problem of Section II.
Lemma 6 Partition pair (P(X), P(Y) for p(x,y) yields a lossless instantaneous MASC if and only if for any x,x′∈X such that {γX(X), γX(X′)} does not satisfy the prefix condition, {γy:y∈AxAx′} satisfies the prefix condition and for any y,y′∈y such that {γY(Y), γY(Y′)} does not satisfy the prefix condition, {γX(X):x∈By By′} satisfies the prefix condition. Here By={x∈X:p(x,y)>0}.
Proof: First, we show that if lossless instantaneous MASC decoding fails, then the MASC prefix condition must be violated. If lossless instantaneous MASC decoding fails, then there must be a time in the decoding procedure, that we decode to nodes (nx, ny) with subtrees Tx and T, but one of the following occurs:
In case (1), one of the following must happen: (a) the decoder determines that Y∈ny, but cannot determine whether or not X∈nx; (b) the decoder determines that X∈nx, but cannot determine whether or not Y∈ny; (c) the decoder cannot determine whether or not Y∈ny or whether or not X∈nx. If (a) occurs, then there must exist Y, y′∈ny, x∈nx, and x′∈Txnxc with p(x,y)p(x′,y)>0 or p(x,y)p(x′,y′)>0, which means x,x′∈By By′. If (b) occurs, then there must exist x,x′∈nx, y∈ny, and y′∈Tynyc with p(x,y)p(x,y′)>0 or p(x,y)p(x′,y′)>0, which means y,y′∈AxAx′. If (c) occurs, then there must exist x∈nx, x′∈Txnxc, y∈ny, and y′∈Tynyc with p(x,y)p (x′,y′)>0 or p(x′,y)p(x,y′)>0, which means y,y′∈Ax Ax′. Thus in subcases (a), (b), and (c) of case (1) the MASC prefix condition is violated.
In case (2), assume the true values of (X,Y) are (x,y), then one of the following must occur: (a) we decode Y=y but cannot decode X; (b) we decode X=x but cannot decode Y; (c) we can decode neither X nor Y. If (a) occurs, then there must exist an x′ ∈nx with p(x′,y)>0, which means x,x′∈By. If (b) occurs, then there must exist a y′∈ny with p(x,y′)>0, which means y,y′∈Ax. If (c) occurs, then there must exist x′∈nx and y′∈ny with p(x′,y′)>0 or p(x,y′)>0 or p(x′,y)>0,which means x,x′∈ByBy′, or y,y′∈AxAx′. Thus in subcases (a), (b), (c) of case (2) the MASC prefix condition is likewise violated.
Next, we show that if the MASC prefix condition is violated, then we cannot achieve a lossless instantaneous MASC. Here we use nx and ny to denote the nodes of the partition tree satisfying x∈nx and y∈ny. We assume symbols x,x′∈X and y,y′∈Y satisfy y,y′∈AxAx′ and x,x′∈ByBy′, but γX(X) and γX(X′) do not satisfy the prefix condition, and γY(Y) and γY(Y′) do not satisfy the prefix condition; i.e. the MASC prefix condition is violated. Then one of the following must hold:
γX(X)=γX(X′) and γY(Y)=γY(Y′); (1)
γX(X)=γX(X′) and γY(Y) is the prefix of γY(Y′); (2)
γY(Y)=γY(Y′) and γX(X) is the prefix of γX(X′); (3)
γX(X) is the prefix of γX(X′) and γY(Y) is the prefix of γY(Y′); (4).
In case (1), there must be a time in the decoding procedure that the decoder stops at (nx, ny) and determines that X∈nx; Y∈ny. However, since y,y′∈AxAx′, all of the following are possible given X∈nx and Y∈ny: (a) y∈AxAx′c and y′∈Ax′Axc; (b) y∈Ax′Axc and y′∈AxAx′c; (c) y,y′∈AxAx′. Thus the decoder cannot determine which of the following symbols was described: (x,y), (x,y′), (x′,y) or (x′,y′).
In case (2), there must be a time in the decoding procedure that the decoder reaches (nx, ny) and determines that X∈nx. However, as in case (1), all of the three possibilities can happen, and the decoder does not have extra information to determine whether or not Y∈ny.
In case (3), there must be a time in the decoding procedure that the decoder reaches (nx, ny) and determines that Y∈ny. However, as in case (1), all of the three possibilities can happen, and the decoder does not have extra information to determine whether or not X∈nx.
In case (4), there must be a time in the decoding procedure, that the decoder reaches (nx, ny) and needs to determine whether or not X∈nx and whether or not Y∈ny. However, again as in case (1), all of the three possibilities can happen, and the decoder does not have extra information to instantaneously decode. □
Optimality of a matched code for partition P(Y) is independent of whether P(Y) is used in a side-information code or an MASC. Thus our optimal matched code design methods from lossless side-information coding apply here as well, giving optimal matched Shannon, Huffman, and arithmetic codes for any partition pair (P(X), P(Y)) for p(x,y) that satisfies the MASC prefix condition.
Optimal Partition Properties
Given a partition pair (P(X), P(Y)) that satisfies the MASC prefix condition, (P(X), P(Y)) is optimal for use in a matched Huffman MASC on p(x,y) if (ElP(X)(H)(X), ElP(Y)(H)(Y)) sits on the lower boundary of the rates achievable by a lossless MASC on alphabet X×Y. Similarly, (P(X), P(Y)) is optimalfor use in a matched arithmetic MASC on p(x,y) if (ElP(X)★(X), Elp(Y)★(Y)) sits on the lower boundary of the rates achievable by a lossless MASC on alphabet X×Y. Again lP(H) and lP★ denote the Huffman and optimal description lengths respectively for partition P, and Huffman coding is optimal over all codes on a fixed alphabet. (Mixed codes (e.g., Huffinan coding on X and arithmetic coding on Y) are also possible within this framework.) While the lower convex hull of the rate region of interest is achievable through time sharing, we describe the lower boundary of achievable rates rather than the convex hull of that region in order to increase the richness of points that can be achieved without time sharing. This region describes points that minimize the rate needed to describe Y subject to a fixed constraint on the rate needed to describe X or vice versa. The regions are not identical since the curves they trace are not convex. Their convex hulls are, of course, identical.
Using Lemma 7, we again restrict our attention to partitions with no empty nodes except for the root. The proof of this result does not follow immediately from that of the corresponding result for side-infornation codes. By Lemma 6, whether or not two symbols can be combined for one alphabet is a function of the partition on the other alphabet. Thus we must here show not only that removing empty nodes does not increase the expected rate associated with the optimal code for a given partition but also that it does not further restrict the family of partitions allowed on the other alphabet.
Lemma 7 For each partition pair (P(X), P(Y)) that achieves performance on the lower boundary of the achievable rate region, there exists a partition pair (P★(X), P★(Y)) achieving the same rate performance as (P(X), P(Y)), for which every node except for the roots of P★(X) and P★(Y) is non-empty and no node has exactly one child.
Proof: Case 1: If any non-root node n of partition P(X) is empty, then we remove n, so {nk}k=1K(n) descend directly from n's parent. Case 2: If any node n has exactly one child n1, then we combine n and n1 to form 1-level group (n, n1) with {n1k}k=1K(n1) descending directly from (n, n1). In both cases, the rate of the new partition does not increase and the prefix condition among P(X)'s non-empty nodes is unchanged, thus the symbols of y that can be combined likewise remains the same by Lemma 6.
Partition Design
By Lemma 6, whether or not two symbols can be combined in a general MASC is a function of the partition on the other alphabet. Fixing one partition before designing the other allows us to fix which symbols of the second alphabet can and cannot be combined and thereby simplifies the search for legitimate partitions on the second alphabet. In the discussion that follows, we fix P(Y and then use a variation on the partition search algorithm of lossless side-information coding to find the best P(Y) for which (P(X, P()) yields an instantaneous lossless MASC. Traversing all P(X) allows us to find all partitions with performances on the lower boundary of the achievable rate region.
To simplify the discussion that follows, we modify the terminology used in lossless side-information coding to restrict our attention from all partitions on y to only those partitions P(Y) for which (P(X), P(Y)) satisfies the MASC prefix condition given a fixed P(X). In particular, using Lemma 6, symbols y and y′ can be combined given P(X) if and only if there does not exist an x,x′∈X such that γX(X)≦γX(X′) and y,y∈AxAx′. (Here γX(X) is any matched code for P(X).) Equivalently,y and y′ can be combined given P(X) if for each pair x,x′∈X such that γX(X)≦γX(X′), (p(x,y)+p(x′,y))(p(x,y′)+p(x′,y′))=0. Given this new definition, the corresponding definitions for M-level groups, partitions on Y, and matched codes for partitions on Y for a fixed P(X) follow immediately.
Next consider the search for the optimal partition on Y given a fixed partition P(X). We use P★(Y|P(X)) to denote this partition. The procedure used to search for P★(Y|P(X)) is almost identical to the procedure used to search for the optimal partition in side-information coding. First, we determine which symbols from Y can be combined given P(X). In this case, for each node n∈T(P(X)), if Tn is the subtree of T(P(X)) with root n, then for each n′∈Tnk with k∈{1, . . . , K(n)}, symbols y,y′∈AnAn′ cannot be combined given P(X). Here An={y:y∈Ax, x∈n}. Traversing the tree from top to bottom yields the full list of pairs of symbols that cannot be combined given P(X). All pairs not on this list can be combined given P(X). Given this list, we construct a list of groups and recursively build the optimal partition P★(Y|P(X)) using the approach described in an earlier section.
Given a method for finding the optimal partition P★(Y|P(X)) for a fixed partition P(X), we next need a means of listing all partitions P(X). (Note that we really wish to list all P(X), not only those that would be optimal for side-information coding. As a result, the procedure for constructing the list of groups is slightly different from that in lossless side-information information coding.) For any alphabet X′X, the procedure begins by making a list LX′ of all (single- or multi-level) groups that may appear in a partition of X′ for p(x,y) satisfying Lemma 7 (i.e. every node except for the root is non-empty, and K(n)≠1). The list is initialized as LX′={(x):x∈X′}. For each symbol x∈X′ and each non-empty subset S{z∈X′:z can be combined with x under p(x,y)}, we find the set of partitions {P(S)} of S for p(x,y); for each P(S), we add x to the empty root of T(P(S)) if P(S) contains more than one group or to the root of the single group in P(S) otherwise; then we add the resulting new group to LX′ if LX′ does not yet contain the same group.
After constructing the above list of groups, we build a collection of partitions of X′ made of groups on that list. If any group G∈LX′ contains all of the elements of X′, then {G} is a complete partition. Otherwise, the algorithm systematically builds a partition, adding one group at a time from LX′ to set P(X′) until P(X′) is a complete partition. For G∈LX′ to be added to P(X′), it must satisfy GG′=∅ for all G′∈P(X′). The collection of partitions for X′ is named LP(X′).
We construct the optimal partition P★(Y|P(X)) for each P(X)∈LP(X) and choose those partition pairs (P(X), P(Y)) that minimize the expected rate needed to describe Y given a fixed constraint on the expected rate needed to describe X (or vice versa).
Near-Lossless Instantaneous Multiple Access Source Coding: Problem Statement, Partition Pairs, and Optimal Matched Codes
Finally, we generalize the MASC problem from lossless instantaneous side-information and general MASCs to near-lossless instantaneous side-information and general MASCs. For any fixed ε>0, we call MASC ((γX, γY), γ−1) a near-lossless instantaneous MASC for Pe≦εif ((γX, γY), γ−1) yields instantaneous decoding with Pe=Pr(γ−1(γX(X), γY(Y))≠(X,Y))≦ε. For instantaneous decoding in a near-lossless MASC, we require that for any input sequences x1, x2, x3, . . . and y1, y2, y3, . . . with p(x1, y1)>0 the instantaneous decoder reconstructs some reproduction of (x1, y1) by reading no more and no less than the first |γX(x1)| bits from γX(x1)γX(x2)γX(x3) . . . and the first |γY(Y1)| bits from γY(y1)γY(Y2)γY(Y3) . . . (without prior knowledge of these lengths). That is, we require that the decoder correctly determines the length of the description of each (x,y) with p(x,y)>0 even when it incorrectly reconstructs the values of x and y. This requirement disallows decoding error propagation problems caused by loss of synchronization at the decoder.
Theorem 6 gives the near-lossless MASC prefix property. Recall that the notation γY(Y)>γY(Y′) means that γY(Y) is a proper prefix of γY(Y′), disallowing γY (y)=γY(Y′).
Theorem 6 Partition pair (P(X), P(Y)) can be used in a near-lossless instantaneous MASC on p(x,y) if and only if both of the following properties are satisfied:
(A) for any x,x′∈X such that γX(X)>γX(X′), {γY(Y):y∈Ax Ax′}is prefix free;
(B) for any x,x′∈X such that γX(X)=γX(X′), {γY(Y):y∈Ax Ax′} is free of proper-prefixes.
Proof. If either condition (A) or condition (B) is not satisfied, then there exist symbols x,x′∈X and y,y′∈Y, such that y,y′∈AxAx′, and one of the following is true:
(1) γX(X)=γX(X′) and γY(Y)>γY(Y′); (2) γY(Y)=γY (y′) and γX(X)>γX(X′); (3) γX(X)>γX(X′) and γY(Y)>γY(Y′). In any of these cases, the decoder cannot determine where to stop decoding one or both of the binary descriptions by an argument like that in Lemma 6. The result is a code that is not instantaneous.
For the decoder to be unable to recognize when it has reached the end of γX(X) and γY(Y), one of the followings must occur: (1) the decoder determines that X∈nx, but cannot determine whether or not Y∈ny; (2) the decoder determines that Y∈ny, but cannot determine whether or not X∈nx; (3) the decoder cannot determine whether or not X∈nx or Y∈ny. Following the argument used Lemma 6, each of these cases leads to a violation of either (A) or (B) (or both).
Thus the near-lossless prefix property differs from the lossless prefix property only in allowing γX(X)=γX(X′) and γY(Y)=γY(Y′) when y,y′∈AxAx′. In near-lossless side information coding of Y given X this condition simplifies as follows. For any y,y′∈Y for which there exists an x∈X with p(x,y)p(x,y′)>0, γY(Y)>γY(Y′) is disallowed (as in lossless coding) but γY(Y)=γY(Y′) is allowed (this was disallowed in lossless coding). In this case, giving y and y′ descriptions γY(Y)≦γY(Y′) would leave the decoder no means of determining whether to decode |γY(Y)| bits or |γY(Y′)| bits. (The decoder knows only the value of x and both p(x,y) and p(x,y′) are nonzero.) Giving y and y′ descriptions γY(Y)=γY(Y′) allows instantaneous (but not error free) decoding; and the decoder decodes to the symbol with the given description that maximizes p(·|x). In the more general case, if (G(X), G(Y)) are the 1-level groups described by (γX(X), γY(Y)), the above conditions allow instantaneous decoding of the description of G(X) and G(Y). A decoding error occurs if and only if there is more than one pair of (x,y)∈G(X)×G(Y) with p(x,y)>0. In this case, the decoder reconstructs the symbols as arg max(x,y)∈G
Decoding Error Probability and Distortion Analysis
As discussed above, the benefit of near-lossless coding is a potential savings in rate. The cost of that improvement is the associated error penalty, which we quantify here.
By Lemma 6, any 1-level group GY is a legitimate group in near-lossless side-information coding of Y given X. The minimal penalty for a code with γY(Y)=γY(Y′) for all y,y′∈G is
This minimal error penalty is achieved by decoding the description of G to y=arg maxy′∈Gp(x,y′) when X=x. Multi-level group G=(R:C(R)) is a legitimate group for side-information coding of Y given X if and only if for any x∈X and y∈R, y′∈C(R) implies p(x,y)p(x,y′)=0. In this case,
That is, the error penalty of a multi-level group equals the sum of the error penalties of the 1-level groups it contains. Thus for any partition P(Y) satisfying the near-lossless MASC prefix property,
Similarly, given a partition P(X), a 1-level group GY is a legitimate group for a general near-lossless MASC given P(X) if for any y,y′∈G, y and y′ do not both belong to Ax Ax′for any x,x′ such that γX(X)≦γX(X′). A multi-level group G=(R:C(R)) on Y is a legitimate group for a general near-lossless MASC if R and all members of C(R)) are legitimate, and for any y∈R and y′∈C(R), y and y′ do not both belong to AxAx′ for any x,x′ such that x is a prefix of x′.
For any pair of nodes nx∈T(P(X)) and ny∈T(P(Y)), the minimal penalty for (nx, ny) is
Decoding the description of nx and ny to arg maxx∈n
Pe(P(X), P(Y))=Σn
Since near-lossless coding may be of most interest for use in lossy coding, probability of error may not always be the most useful measure of performance in a near-lossless code. In lossy codes, the increase in distortion caused by decoding errors more directly measures the impact of the error. We next quantify this impact for a fixed distortion measure d(a, â)>0. If d is the Hamming distortion, then the distortion analysis is identical to the error probability analysis.
In side information coding of Y given X, the minimal distortion penalty for 1-level group G is
This value is achieved when the description of G is decoded to arg minŷ∈GΣy∈Gp(x,y)d(y, ŷ) when X=x. Thus for any partition P(Y) satisfying the near-lossless MASC prefix property, the distortion penalty associated with using this near-lossless code rather than a lossless code is
In general near-lossless MASC coding, the corresponding distortion penalty for any partition (P(X), P(Y)) that satisfies the near-lossless MASC prefix property is
Partition Design
In near-lossless coding, any combination of symbols creates a legitimate 1-level group G (with some associated error Pe(G) or D(G)). Thus one way to approach near-lossless MASC design is to consider all combinations of 1-level groups that yield an error within the allowed error limits, in each case design the optimal lossless code for the reduced alphabet that treats each such 1-level group G as a single symbol {tilde over (x)}G({tilde over (x)}G∉X if |G|>1) or {tilde over (y)}G({tilde over (y)}G∉Y if |G|>1), and finally choose the combination of groups that yields the lowest expected rates. Considering all combinations of groups that meet the error criterion guarantees an optimal solution since any near-lossless MASC can be described as a lossless MASC on a reduced alphabet that represents each lossy 1-level group by a single symbol.
For example, given a 1-level group G=(x1, . . . , xm)X we can design a near-lossless MASC with error probability Pe(G) by designing a lossless MASC for alphabets {tilde over (X)}=X {x1, . . . , xm}c{{tilde over (x)}G} and Y and p.m.f.
Thus designing a near-lossless MASC for p(x,y) that uses only one lossy group G is equivalent to designing a lossless MASC for the probability distribution {tilde over (p)}(x,y), where the matrix describing {tilde over (p)}(x,y) can be achieved by removing from the matrix describing p(x,y) the rows for symbols x1, . . . , xm∈G and adding a row for {tilde over (x)}G. The row associated with {tilde over (x)}G equals the sum of the rows removed. Similarly, building a near-lossless MASC using 1-level group GY is equivalent to building a lossless MASC for a p.m.f in which we remove the columns for all y∈G and include a column that equals the sum of those columns.
Multiple (non-overlapping) 1-level groups in X or Y can be treated similarly. In using groups G1, G2⊂X, the error probability adds, but in using groups GXX and GyY the effect on the error probability is not necessarily additive. For example, if GX=(x1, . . . , xm) and Gy=(y1, . . . , yk) then the error penalty is
where {tilde over (R)}={x1, . . . , xm} and {tilde over (C)}={y1, . . . , yk}. Since using just GX gives
and using just Gy gives
we have
Pe(GX, GY)=Pe(GX)+Pe(GY)−δ(GX, GY),
where
is not necessarily equal to zero. Generalizing, the above results to multiple groups GX,1, . . . , GX,M and GY,1, . . . , GY,K corresponding to row and column sets {{tilde over (R)}1, {tilde over (R)}2, . . . , {tilde over (R)}M} and {{tilde over (C)}1, {tilde over (C)}2, . . . , {tilde over (C)}K} respectively gives total error penalty
Using these results, we give our code design algorithm as follows.
In near-lossless coding of source X given side information Y, we first make a list LX,ε of all lossy 1-level groups of X that result in error at most ε (the given constraint). (The earlier described lossless MASC design algorithm will find all zero-error 1-level groups.) Then a subset SX,ε of that LX,ε such that SX,ε is non-overlapping and result in error at most ε is a combination of lossy 1-level groups with total error at most ε. For each SX,ε, obtain the reduced alphabet {tilde over (X)} and p.m.f {tilde over (p)}(x,y) by representing each group G∈SX,ε by a single symbol {tilde over (x)}G as we described earlier. Then perform lossless side information code design of {tilde over (X)} on {tilde over (p)}(x,y). After all subsets SX,ε are traversed, we can find the lowest rate for coding X that results in error at most ε. Near-lossless coding of Y with side information X can be performed in a similar fashion.
To design general near-lossless MASCs of both X and Y, we first make a list LX,ε of all 1-level groups of X that result in error at most ε, and a list LY, ε of all 1-level groups of Y that result in error at most ε. (We include zero-error 1-level groups here, since using two zero-error 1-level groups GXX and GYY together may result in non-zero error penalty.) Second, we make a list LS
An Alternative Algorithm Embodiment
We next describe an alternative method of code design. The following notation is useful to the description of that algorithm.
The approach described below assumes a known collection of decisions on which symbols of Y can be combined. If we are designing a side-information code, these decisions arise from the assumption that source X is known perfectly to the decoder and thus the conditions described in the section—“Lossless Side-Information Coding” apply. If we are designing a code for Y given an existing code for X, these conditions arise from the MASC prefix condition in Lemma 6.
The algorithm also relies on an ordering of the alphabet Y denoted by Y={y1, y2, . . . , yN} Here N=|Y| is the number of symbols in Y, and for any 1≦i<j≦N, symbol yi is placed before symbol yj in the chosen ordering. Any ordering of the original alphabet is allowed. The ordering choice restricts the family of codes that can be designed. In particular, the constraints imposed by the ordering are as follows:
We discuss methods for choosing the ordering below.
Finally, we define a function f used in the code design. For any i≦j , let P[i,j]=Σk=ijPY(Yk) and G[i,j] denote the group that occupies positions from i to j. When the algorithms begins, only G[i, i] are defined, with G[i, i]=(yi) for each i ∈{1, 2, . . . , N}. The values of G[i,j] for each i<j are set as the algorithm runs. The value of G[1, N] when the algorithm is completed is the desired code on the full alphabet. For any p ε(0,1), let H(p,1−p)=−p log p−(1−p)log(1−p). Finally, for any i≦j<k, let c[i,j,k] be defined as follows.
The value of c[i,j,k] describes if the two adjacent groups G[i,j] and G[j+1, k] must be siblings under an empty root (when c[i,j,k]=2) or one group can reside at the root of the other group (when c[i,j,k]=0,G[i,j] can reside at the root of G[j+1, k]; when c[i,j,k]=1, G[j+1, k] can reside at the root of G[i,j]). We cannot calculate c[i,j,k] until G[i,j] and G[j+1, k] have been calculated.
The value of f(w[i,j], w[j+1,k]) is the rate of group G[i,k] when we use groups G[i,j] and G[j+1,k] to construct G[i,k]. When G[i,j] can reside at the root of G[j+1,k], f(w[i,j], w[j+1, k]) equals G[j+1, k]’s best rate; when G[j+1, k] can reside at the root of G[i,j], f(w[i,j],w[j+1,k]) equals G[i,j]’s best rate; when G[i,j] and G[j+1, k] must be siblings, f(w[i,j],w[j+1,k]) equals wo[i,j,k]. The best rate of G[i,k] is the minimal value of f(w[i,j], w[j+1, k]) over all j ∈{i,i+1, . . . i+L−1}. The function f(w[i,j], w[j+1,k]) is calculated as follows:
Given the above definitions, we use the following algorithm for code design.
When the above procedure is complete, G[1, N] is an optimal code subject to the constraints imposed by ordering {(y1, y2, . . . , yN} and w[1, N] gives its expected description length.
The algorithm may be used in a number of different ways.
Here we note that trying all orderings guarantees the optimal performance. Choosing a sequence of orders at random gives performance approaching the optimal performance in probability.
Huffman Coding Example for the New Algorithm
Table 5 gives another example of the joint probability of source X and Y, with X=Y={a1,a2, a3, a4, a5}. Suppose X is given as side-information, we now find the optimal Huffman code for Y subject to the constraints imposed by ordering {a1, a2, a3, a4, a5} on Y.
Initialize: w[i,i]=0,G[i,i]=(ai), i ∈{1, . . . ,5}.
i=1: c[1,1,3]=0 (since w[1,1]=0 and G[1, 1]=(a1) can be combined with the root of G[2, 3]=(a2, a3)), so f[w[1,1], w[2,3]]=0, which is the minimal value.
i=2: c[2, 2, 4]=0 (since w[2, 2]=0 and G[2, 2]=(a2) can be combined with the root of G[3, 4]=(( ):{(a3),(a4)})), so f[w[2,2], w[3,4 ]]=w[3,4]=0.4;
i=3: c[3, 3, 5]=2, f[w,[3,3], w[4,5]]=w°[3,3,5]=w[4,5]+P[3,5]=1.35;
i=1:
i=2:
i=1:
Thus the optimal Huffman code subject to the constraints imposed by ordering {a1,a2,a3,a4,a5} on Y is G[1, 5]=((a1):{((a2):{(a3), (a4)}), (a5)}), with rate w[1,5 ]=1.25 bits.
Experimental Results
This section shows optimal coding rates for lossless side-information MASCs, lossless general MASCs, and near-lossless general MASCs for the example of Table 3. We achieve these results by building the optimal partitions and matched codes for each scenario, as discussed in earlier sections. Both Huffman and arithmetic coding rates are included.
Table 6 below gives the side-information results for the example of Table 3.
Here H(X) and RH(X) are the optimal and Huffman rate for source X when X is coded independently. We use [H(Y),R′SI,A(Y), R★SI,A(Y)] and [RH(Y),R′SI,H(Y),R★SI,H(Y)] to denote the optimal and Huffman results respectively for [traditional, side-information from results from Jabri and Al-Issa and our side-information] coding on Y. The partition trees achieving these results are shown in
For the joint probability distribution given in Table 3 of the “Invention Operation” section, we perform the alternative algorithm embodiment (described in the last section) on several orderings of the alphabet Y={A0,a1,a2,a3,a4,a5,a6,a7} (considering X is given as side-information).
For Huffman coding, many orderings can achieve the optimal performance (RSI,H*(Y)=1.67), for example, orderings (a0, a1, a3, a6, a2, a4, a5, a7), (a3, a6, a0, a4, a2, a5, a1, a7), (a4, a6, a0, a1, a3, a5, a7, a2), (a7, a2, a3, a5, a4, a6, a1, a0), etc, etc. These are just a few examples.
For arithmetic coding, again, many orderings can achieve the optimal performance (RSI,A*(Y)=1.53582), for example, orderings (a0, a4, a1, a5, a2, a7, a3, a6), (a1, a5, a2, a0, a4, a7, a6, a3), (a5, a1, a2, a4, a0, a7, a6, a3), (a6, a3, a4, a0, a2, a5, a1, a7), etc, etc. These are just a few examples.
Table 7 below gives examples of a few randomly chosen orderings' Huffman code rates and arithmetic code rates.
Thus, an implementation of lossless and near-lossless source coding for multiple access networks is described in conjunction with one or more specific embodiments. The invention is defined by the claims and their full scope of equivalents.
The paper titled “Lossless and Near-Lossless Source Coding for Multiple Access Networks” by the inventors is attached as Appendix A.
This application claims priority from provisional applications Nos. 60/265,402 filed Jan. 30, 2001 and 60/301,609 filed Jun. 27, 2001.
Number | Name | Date | Kind |
---|---|---|---|
5142283 | Chevion et al. | Aug 1992 | A |
5534861 | Chang et al. | Jul 1996 | A |
5751859 | Howard | May 1998 | A |
5764374 | Seroussi et al. | Jun 1998 | A |
5818877 | Tsai et al. | Oct 1998 | A |
5848195 | Romriell et al. | Dec 1998 | A |
5959560 | Said et al. | Sep 1999 | A |
6771831 | Effros et al. | Aug 2004 | B2 |
Number | Date | Country | |
---|---|---|---|
20020176494 A1 | Nov 2002 | US |
Number | Date | Country | |
---|---|---|---|
60301609 | Jun 2001 | US | |
60265402 | Jan 2001 | US |