Natural Language Processing with Datamuse and Wordnet


Keywords
nlp, word, rhyme, synonym, similar, datamuse, meaning, typescript, jest
License
MIT
Install
npm install wordfuzz@1.1.0

Documentation

wordfuzz

Natural Language Processing with Datamuse and Wordnet

License: MIT codecov Build Status Maintainability Known Vulnerabilities npm (scoped) npm bundle size (minified)

Install dependency

# With npm
npm install --save wordfuzz

# With yarn
yarn add wordfuzz

Quickstart

const fuzz = require('wordfuzz');

fuzz()
  .meansLike('develop')
  .endsWith('m')
  .max(1)
  .ask().then(console.log);

// [{ word: 'transform', score: 17905, tags: ['v'] }]

TODO

  • Complete Datamuse integration
  • Provide option to communicate with local Wordnet
  • Generate sentences instead of just words