Skip to main content

Model for tracking context of utterance and predicting future characters.

Project description

To use, first create CharPredictor object:

>>> predictor = CharPredictor()

This may take a while as model is being downloaded and loaded.

Then, to track utterance context, use:

>>> letter_index = 1    # 1 -> a,   letters should be indexed in order: ' abcdefghijklmnopqrstuvwxyz' (0 -> space)
>>> predictor.add_to_context(letter_index)

or:

>>> letter = 'a'
>>> predictor.add_to_context(letter)

And finally - you can predict probabilities of each letter coming next after text stored in context. (Letters are indexed in order shown below):

>>> predictor.transform()

Letters order:

' abcdefghijklmnopqrstuvwxyz' # space character comes at index 0, then alphabetical order for indices from 1 to 26

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dictionary-model-0.2.3.tar.gz (2.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page