Skip to content

Instantly share code, notes, and snippets.

@acrymble
Created June 14, 2012 11:48
Show Gist options
  • Select an option

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

Select an option

Save acrymble/2929830 to your computer and use it in GitHub Desktop.
nGramsToKWICDict.py
# Given a list of n-grams identify the index of the keyword.
def nGramsToKWICDict(ngrams):
keyindex = len(ngrams[0]) // 2
return keyindex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment