Starting from:

$30

CSE597-Homework 1 Solved

1.  Markov Models
In this section, you will build a simple language model that can be used to generate random text resembling a source document. Your use of external code should be limited to built-in Python modules, which excludes, for example, NumPy and NLTK.

1.    Write a simple tokenization function tokenize(text) which takes as input a string of text and returns a list of tokens derived from that text. Here, we define a token to be a contiguous sequence of non-whitespace characters, with the exception that any punctuation mark should be treated as an individual token. Hint: Use the built-in constant string.punctuation, found in the string module.

 

2.   Write a function ngrams(n, tokens) that produces a list of all n-grams of the specified size from the input token list. Each n-gram should consist of a 2-element tuple (context, token), where the context is itself an (n-1)-element tuple comprised of the n-1 words preceding the current token. The sentence should be padded with n-1 "<START>" tokens at the beginning and a single "<END>" token at the end. If n = 1, all contexts should be empty tuples. You may assume that n ≥ 1.

 

3.   In the NgramModel class, write an initialization method __init__(self, n) which stores the order n of the model and initializes any necessary internal variables. Then write a method

update(self, sentence) which computes the n-grams for the input sentence and updates the internal

counts. Lastly, write a method prob(self, context, token) which accepts an (n-1)-tuple representing a context and a token, and returns the probability of that token occuring, given the preceding context.

 

4.   In the NgramModel class, write a method random_token(self, context) which returns a random token according to the probability distribution determined by the given context. Specifically, let T = < t1, t2, . . . , tn > be the set of tokens which can occur in the given context, sorted according to Python's natural lexicographic ordering, and let 0 ≤ r < 1 be a random number between 0 and 1. Your method should return the token ti such that

 

You should use a single call to the random.random() function to generate r.

 

>>>random.seed(1) >>>[m.random_token(())      for i in range(25)] ['<END>', 'c', 'b', 'a', 'a', 'a', 'b', 

 'b', '<END>', '<END>', 'c', 'a', 'b', 

 '<END>', 'a', 'b', 'a', 'd', 'd', 

  '<END>', '<END>', 'b', 'd', 'a', 'a'] >>>random.seed(2) >>>[m.random_token(("<START>",))      for i in range(6)] ['a', 'a', 'a', 'a', 'a', 'a'] >>>[m.random_token(("b",))      for i in range(6)] 

['c', '<END>', 'a', 'a', 'a', '<END>'] 

5.   In the NgramModel class, write a method random_text(self, token_count) which returns a string of space-separated tokens chosen at random using the random_token(self, context) method. Your starting context should always be the (n-1)-tuple ("<START>", ..., "<START>"), and the context should be updated as tokens are generated. If n = 1, your context should always be the empty tuple. Whenever the special token "<END>" is encountered, you should reset the context to the starting context.

 

6.   Write a function create_ngram_model(n, path) which loads the text at the given path and creates an n-gram model from the resulting data. Each line in the file should be treated as a separate sentence.

# No random seeds, so your results may vary 

>>>m = create_ngram_model(1, "frankenstein.txt"); m.random_text(15) 

 'beat astonishment brought his for how , door <END> his . pertinacity to I felt' 

>>>m = create_ngram_model(2, "frankenstein.txt"); m.random_text(15) 

'As the great was extreme during the end of being . <END> Fortunately the sun' 

>>>m = create_ngram_model(3, "frankenstein.txt"); m.random_text(15) 

'I had so long inhabited . <END> You were thrown , by returning with greater' 

>>>m = create_ngram_model(4, "frankenstein.txt"); m.random_text(15) 

'We were soon joined by Elizabeth . <END> At these moments I wept bitterly and' 

7.   Suppose we define the perplexity of a sequence of m tokens < w1, w2, . . . , wm > to be

 

For example, in the case of a bigram model under the framework used in the rest of the assignment, we would generate the bigrams < (w0 = < START >, w1), (w1, w2), . . . , (wm-1, wm), (wm, wm+1 = <END>) >, and would then compute the perplexity as

 

Intuitively, the lower the perplexity, the better the input sequence is explained by the model. Higher values indicate the input was "perplexing" from the model's point of view, hence the term perplexity.

In the NgramModel class, write a method perplexity(self, sentence) which computes the n-grams for the input sentence and returns their perplexity under the current model. Hint: Consider performing an intermediate computation in log-space and re-exponentiating at the end, so as to avoid numerical overflow.

More products