Skip to content

Instantly share code, notes, and snippets.

@Cowa
Last active October 21, 2015 19:54
Show Gist options
  • Select an option

  • Save Cowa/459b4471a7f192b1b41b to your computer and use it in GitHub Desktop.

Select an option

Save Cowa/459b4471a7f192b1b41b to your computer and use it in GitHub Desktop.
val n = 2
val ngram = tokens.sliding(n).toList
// List(List(The, blue), List(blue, sky), List(sky, is), List(is, near), List(near, the), List(the, red), List(red, koala), List(koala, near), List(near, the), List(the, blue), List(blue, sky))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment