Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save acrymble/1065782 to your computer and use it in GitHub Desktop.
Python ngram
#useGetNGrams.py
import obo
wordstring = 'it was the best of times it was the worst of times '
wordstring += 'it was the age of wisdom it was the age of foolishness'
allMyWords = wordstring.split()
print obo.getNGrams(allMyWords, 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment