Natural is a general natural language facility for nodejs that support tokenizing, stemming, classification, phonetics, tf-idf, WordNet, string similarity, and some inflections.
Natural is a general natural language facility for nodejs that support tokenizing, stemming, classification, phonetics, tf-idf, WordNet, string similarity, and some inflections.
Customer Reviews
Krishan K.
Advanced user of NaturalIt has provided many functions which save a lot of time for any developer. I have used two basic functions of it jaroWinklerDistance, workdTokenizer. first functions take two strings and tell about how close the two strings match from 0 to1. If 0 there no match and if 1 the strings are identical. And the second function takes a string and returns a token in that string-like. ("hello natural") returns ["hello","natural"]. It's very much easy to use.
It saves a lot of time for me. So I do not dislike anything about this pacakge.
It can solve a number of problems but I have used it only for things one for checking string matching probability and the second one is a tokenizing string.