Standard library natural language processing (NLP).
var nlp = require( '@stdlib/nlp' );
Standard library natural language processing (NLP).
var fcns = nlp;
// returns {...}
expandContractions( str )
: expand all contractions to their formal equivalents.lda( docs, K[, options] )
: latent Dirichlet Allocation via collapsed Gibbs sampling.porterStemmer( word )
: extract the stem of a given word.tokenize( str[, keepWhitespace] )
: tokenize a string.
var objectKeys = require( '@stdlib/utils/keys' );
var nlp = require( '@stdlib/nlp' );
console.log( objectKeys( nlp ) );