# Natural Language Toolkit: API for Language Models # # Copyright (C) 2001-2014 NLTK Project # Author: Steven Bird # URL: # For license information, see LICENSE.TXT # # imported for use in mtgcode Nov. 2015 # should this be a subclass of ConditionalProbDistI? class ModelI(object): """ A processing interface for assigning a probability to the next word. """ def __init__(self): '''Create a new language model.''' raise NotImplementedError() def prob(self, word, context): '''Evaluate the probability of this word in this context.''' raise NotImplementedError() def logprob(self, word, context): '''Evaluate the (negative) log probability of this word in this context.''' raise NotImplementedError() def choose_random_word(self, context): '''Randomly select a word that is likely to appear in this context.''' raise NotImplementedError() def generate(self, n): '''Generate n words of text from the language model.''' raise NotImplementedError() def entropy(self, text): '''Evaluate the total entropy of a message with respect to the model. This is the sum of the log probability of each word in the message.''' raise NotImplementedError()