N gram - SoojungHong/TextMining GitHub Wiki
Definition
N-grams are simply all combinations of adjacent words or letters of length n that you can find in your source text. For example, given the word fox, all 2-grams (or “bigrams”) are fo and ox. You may also count the word boundary – that would expand the list of 2-grams to #f, fo, ox, and x#, where # denotes a word boundary.
An N-gram is a sequence of N words: a 2-gram (or bigram) is a two-word sequence of words like “please turn”, “turn your”, or ”your homework”, and a 3-gram (or trigram) is a three-word sequence of words like “please turn your”, or “turn your homework”. N-gram models to estimate the probability of the last word of an N-gram given the previous words, and also to assign probabilities to entire sequences.
Example
Very specific example (probabilistic model of word sequences) :
https://lagunita.stanford.edu/c4x/Engineering/CS-224N/asset/slp4.pdf