A port of Brian Romanowski's Java-based open source Kneser-Ney language model, according to Chen and Goodman's kneser-ney-mod-fix description, to nodejs using the 'natural' npm package.
npm install kn#KN
A port of Brian Romanowski's Java-based open source Kneser-Ney language model, according to Chen and Goodman's kneser-ney-mod-fix
description, to nodejs using the 'natural' npm package.
##Usage [usage]
var kn = require('../lib/kn'),
_ = require('underscore'),
NGramCountModel = kn.NGramCountModel,
KneserNeyModFixModel2 = kn.KneserNeyModFixModel2,
NGram = kn.NGram;
// training is an array of strings (do not feed var kn = new KneserNeyModFixModel2(ngcm); // create an bigram, you have to use indices from the count model (if they are there) // find any matching trigrams and their probability // need a way to print ngrams, yeah, should probably be 'in' NGram // print out the results // in this case, the input is a bigram, output is a trigram (stored in highOrderNGrams) ##Note Brian Romanowski's Copyright on the Java version from which this was adapted /* Redistribution and use in source and binary forms, with or without modification, are 1. Redistributions of source code must retain the above copyright notice, this list of 2. Redistributions in binary form must reproduce the above copyright notice, this list THIS SOFTWARE IS PROVIDED BY BRIAN ROMANOWSKI ``AS IS'' AND ANY EXPRESS OR IMPLIED The views and conclusions contained in the software and documentation are those of the sentence delimiters, no '.')
var ngcm = new NGramCountModel();
for (var t=0;t
var backoff = kn.calcBackoff();
var test = new NGram([ ngcm.index['i'], ngcm.index['have'] ]);
var hashes = backoff.forwardLookup[test.hash()];
var printWords = function(ngram, index){
var str = '';
_.each(ngram.keys,function(key){
str += index[key]+' ';
});
return str;
};
_.each(hashes,function(h){
console.log('\tmatch:',printWords(backoff.highOrderNGrams[h]));
});
Copyright 2011 Brian Romanowski. All rights reserved.
permitted provided that the following conditions are met:
conditions and the following disclaimer.
of conditions and the following disclaimer in the documentation and/or other materials
provided with the distribution.
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BRIAN ROMANOWSKI OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
authors.
*/