Skip to main content
The ngram tokenizer splits text into “grams,” where each “gram” is of a certain length. The tokenizer takes two arguments. The first is the minimum character length of a “gram,” and the second is the maximum character length. Grams will be generated for all sizes between the minimum and maximum gram size, inclusive. For example, pdb.ngram(2,5) will generate tokens of size 2, 3, 4, and 5. To generate grams of a single fixed length, set the minimum and maximum gram size equal to each other.
To get a feel for this tokenizer, run the following command and replace the text with your own:
Expected Response

Ngram Prefix Only

The generate ngram tokens for only the first n characters in the text, set prefix_only to true.
Expected Response