Difference between revisions of "161-A4.2"

From Microlab Classes
Jump to navigation Jump to search
Line 99: Line 99:
 
=== Expected output ===
 
=== Expected output ===
  
The table below shows a sample output for a binary symmetric channel (BSC) with cross-over probability <math>p=10^{-3}</math> and <math>\epsilon</math>-typical sets where <math>\epsilon = 5\times 10^{-2}</math> using equiprobable binary input <math>X</math>. The value reported is the median value out of 10 independent runs with <code>num_frames=10000</code>.
+
The table below shows a sample output for a binary symmetric channel (BSC) with cross-over probability <math>p=10^{-3}</math> and decoded using <math>\epsilon</math>-typical sets where <math>\epsilon = 5\times 10^{-2}</math> using equiprobable binary input <math>X</math>. The value reported is the median value out of 10 independent runs with <code>num_frames=10000</code>.
  
 
{| class="wikitable"
 
{| class="wikitable"

Revision as of 16:02, 12 April 2021

The Typical Set Encoder

To transmit bits of information, we can draw a symbol from a -ary source alphabet uniformly at random. If the channel is noiseless, the symbol can be readily transmitted to the receiver, which will recover the information without any decoding effort. In many cases, however, the channel introduces randomness so that a given transmitted symbol may yield at least two different outputs each with nonzero probability.

The key idea behind achieving the channel capacity is to ensure that the channel inputs follow the optimal distribution . In this discussion, we assume that the channel is discrete and memoryless, and that we can completely characterize the channel using its conditional probability . In practice, the transition probabilities can be estimated by observing the channel for a long time and performing statistical analysis. As an example, some data storage systems can be modeled using the so-called channel where zeros are always transmitted correctly, but the ones may be flipped to zeros at random. It can be shown the the optimal input distribution for most channels will bias the transmission to have more zeros than ones, which is a fairly intuitive result.

In the proof we presented for Shannon's noisy coding theorem, the encoder functions as an "adapter" that bridges the -ary source alphabet to the input alphabet that is expected by the channel. To achieve the capacity, we must ensure the channel "sees" the optimal mix/distribution of symbols from the alphabet . The process followed by typical-set encoder system is outlined as follows:

  • Create a -by- matrix/codebook where each entry is drawn from the channel input alphabet using a distribution .
  • Draw a symbol -ary source alphabet uniformly at random.
  • From the codebook, transmit the row corresponding to the source symbol.

If we scale up both and high enough so as to maintain a constant code rate , the asymptotic equipartition property (AEP) guarantees that the codewords will belong to some concentrated typical set.

The Typical Set Decoder

In the previous section, the typical set encoder took in bits of information and mapped it to an -element vector from . The channel will then process each entry one at a time and produce a random output . Hence, the receiver will see an -element vector from , where is the output alphabet of the channel.

Let's review the underlying probabilities of the system described thus far. We have two main sources of randomness: the input distribution and the conditional/transition probability . By Bayes' theorem, these two probability functions specify a joint distribution . We can think of and as being entangled by their joint distribution. Informally, this "entanglement" becomes stronger as we draw more and more pairs of samples using the distribution . Assuming that we transmit at a rate below the channel capacity, we now interpret Shannon's random-coding argument as follows: if we allow arbitrarily large blocklengths (large ), then we can recover with high probability the -vector from the received vector . Formally, our candidates for are those that are jointly typical with the received codeword.

The process taken by the typical set decoder is outlined as follows:

  • Fix a decoding threshold .
  • Find all codewords from the transmission codebook that are -typical with the received sequence .
  • If there is only one such codeword, report the row number as the decoder output.
  • If there is no such codeword or if there are more than one codewords found, declare a decoding error.

Part 1: Implementation (6 points)

Task description

In the first part, you will implement an encoder-decoder system based on joint typicality. You need to write a function typical_set_codec which will take the following arguments:

  • channel: a list of lists, such that channel[x][y] is the probability that the channel will output y given an input x.
  • x_dist: a list of floats, standing for the probability distribution to be used for generating the random codebook.
  • frame_len: an int indicating the number of bits to be passed as input to the typical set encoder.
  • block_len: an int indicating the number of symbols to be output by the typical set encoder; equivalently, this is also the number of symbols to be received by the typical set decoder.
  • num_frames: an int corresponding the number of frames to send over the channel.
  • epsilon: a float corresponding to the threshold used for testing joint typicality.

The function must output a float corresponding to the estimated symbol error probability.


Python test script for execution
Header
import random, math

def exact_entropy(dist):
    return sum([-p*math.log2(p) for p in dist if p > 0])

def estimated_entropy(samples):
    prob = [samples.count(x)/len(samples) for x in set(samples)]
    return exact_entropy(prob)

def jointly_typical(x, y, joint_dist, epsilon):
    if len(x) != len(y):
        raise ValueError('x and y must have equal lengths.')
    elif epsilon <= 0:
        raise ValueError('epsilon must be strictly positive.')
    else:
        row_length = [len(joint_dist[i]) for i in range(len(joint_dist))]
        if any([row_length[i] != row_length[0] for i in range(1, len(row_length))]):
            raise ValueError('All rows of joint_dist must have equal lengths.')
    
    xy = [(x[i], y[i]) for i in range(len(x))]
    x_alphabet = range(len(joint_dist))
    y_alphabet = range(len(joint_dist[0]))

    x_prob = [sum([joint_dist[x][y] for y in y_alphabet]) for x in x_alphabet]
    y_prob = [sum([joint_dist[x][y] for x in x_alphabet]) for y in y_alphabet]
    xy_prob = [prob for row in joint_dist for prob in row]

    Hx = exact_entropy(x_prob)
    Hy = exact_entropy(y_prob)
    Hxy = exact_entropy(xy_prob)

    return max([abs(Hx - estimated_entropy(x)), abs(Hy - estimated_entropy(y)), abs(Hxy - estimated_entropy(xy))]) < epsilon
Student submission
def typical_set_codec(channel, x_dist, frame_len, block_len, num_frames, epsilon):
    # Your code goes here
    # More code..
    
    return ans
Main test script
# Main test script goes here, and will not be visible to students.
# The script will test if the submitted code does the prescribed functionality.
# For successfully validated scripts, test results will be sent via email.

Expected output

The table below shows a sample output for a binary symmetric channel (BSC) with cross-over probability and decoded using -typical sets where using equiprobable binary input . The value reported is the median value out of 10 independent runs with num_frames=10000.

k n median error probability
5 25 0.285
5 50 0.170
10 100 0.0960

Recall that the transition probability matrix of a BSC with cross-over probability p is given by

Part 2: Report (4 points)

Perform some tests on the binary erasure channel (BEC) using your function. The transition probability matrix of a BEC with erasure probability p is given by:

Note: The symbols have been re-labeled for compatibility with the exercise specifications. Most textbooks will label the output symbol "2" as "?" to indicate an erased symbol.

Write a 400-to-500-word report discussing your findings from implementing the typical set decoder, with answers to the following questions:

  • Does the decoder perform as expected?
  • Can you simulate the decoder to arbitrarily large blocklengths?
  • What aspect/s of the encoder-decoder did you find to be practical/impractical?