Skip to content

Instantly share code, notes, and snippets.

@Cowa
Last active October 23, 2015 11:05
Show Gist options
  • Save Cowa/774b58cbe1e4ebc0abaf to your computer and use it in GitHub Desktop.
Save Cowa/774b58cbe1e4ebc0abaf to your computer and use it in GitHub Desktop.
val ngram = (List.fill(n - 1)("<s>") ++ tokens :+ "</s>")
.sliding(n)
.toList
// Same song
val ngramWithCount = ...
val ngramWithProbabilityFaster = ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment