Skip to content

Instantly share code, notes, and snippets.

@acrymble
Created July 5, 2011 20:07
Show Gist options
  • Select an option

  • Save acrymble/1065795 to your computer and use it in GitHub Desktop.

Select an option

Save acrymble/1065795 to your computer and use it in GitHub Desktop.
Python ngrams to KWIC dictionary
# Given a list of n-grams, return a dictionary of KWICs,
# indexed by keyword.
def nGramsToKWICDict(ngrams):
kwicdict = {}
keyindex = len(ngrams[0]) // 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment