Skip to content

Instantly share code, notes, and snippets.

@RinatValiullov
Last active December 2, 2019 10:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RinatValiullov/fe4aeaff55afbccd14e59b423c6b231f to your computer and use it in GitHub Desktop.
Save RinatValiullov/fe4aeaff55afbccd14e59b423c6b231f to your computer and use it in GitHub Desktop.
For translation of article "Natural language processing for Node.js" - https://bit.ly/2QZsts1
// index.js
var natural = require('natural');
console.log(natural.HammingDistance("karolin", "kathrin", false));
console.log(natural.HammingDistance("karolin", "kerstin", false));
console.log(natural.HammingDistance("short string", "longer string", false));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment