Natural Language Processing with Datamuse and Wordnet
# With npm
npm install --save wordfuzz
# With yarn
yarn add wordfuzz
const fuzz = require('wordfuzz');
fuzz()
.meansLike('develop')
.endsWith('m')
.max(1)
.ask().then(console.log);
// [{ word: 'transform', score: 17905, tags: ['v'] }]
- Complete Datamuse integration
- Provide option to communicate with local Wordnet
- Generate sentences instead of just words