Skip to content
/ ngrammer Public

Calculates and counts ngrams from a json document

License

Notifications You must be signed in to change notification settings

LabCo/ngrammer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NGrammer

Calculates and counts ngrams from a json document

to install

npm install --save lab-ngrammer

to use in a ts projext

import {NGrammer, CountedPhrase} from "lab-ngrammer"
const filePath = "some/file/path.json"
const omitStopWords = false
NGrammer.process(filePath, 30, omitStopWords).then( countedGrams => {
  ...
})

to use in command line

npm install -g lab-ngrammer
lab-ngrammer -f FILE_PATH [-n NUMBER_PHRASES] [-s]
  -f   the file path where to read the json file from
  -n   limits for max number of for each phrase word size group 
  -s   flag to tell ngrammer to remove stop words

expects file json format

{
  reviews: [
    { 
      text: "text to ngram"
      ...
    }
    ...
  ]
  ...
}

About

Calculates and counts ngrams from a json document

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published