node-lmtool
Programatically submit files to lmtool and get the files back
What does it do?
It submits a corpus file for you, to the service lmtool. This service will give you a dictionary and vocabulary back, to be used for speech to text tools.
Installation
npm i -S lmtool
API
lmtool(words, callback)
Start a new lmtool submission with the words specified.
Arguments
words
. Required. An array of words to use for your corpus file.callback(err, fileName)
. Required. A callback to call with the name prefix of your dictionary and vocabulary files.
An array of words you want to use.
Example
const lmtool = ; ;