How to use the talisman/tokenizers/syllables/legalipy.LegalipyTokenizer function in talisman

To help you get started, we’ve selected a few talisman examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Yomguithereal / talisman / _js / tokenizers-syllables.js View on Github external
const buildTokenizer = text => {
  const tokens = words(text);

  const tokenizer = new LegalipyTokenizer();
  tokenizer.train(tokens);
  tokenizer.finalize();

  return tokenizer.tokenize.bind(tokenizer);
};