This module implements a Hidden Markov Model featuring methods to obtain the real generation probability and Viterbi approximations as well as methods to initialize and/or reestimate a HMM given a set of generated items with Viterbi re-estimation and linear segmentation.
Implementation itself depends on no additional module.
This project can be used as a NodeJS module:
var hmm = require( './hmm.js' );
var aModel = new hmm();
A Hidden Markov Model can be initialized giving the explicit list of states (including final state), symbols, initial probabilities, transition probabilities and emission probabilities.
aModel = new hmm(
[ '1', '2', '3', 'F' ],
'F', [ 'a', 'b', 'c' ], {
'1': 1
}, {
'1': {
'1': 0.2,
'2': 0.5,
'3': 0.3
},
'2': {
'1': 0.1,
'3': 0.9
},
'3': {
'3': 0.4,
'F': 0.6
}
}, {
'1': {
'b': 0.3,
'c': 0.7
},
'2': {
'a': 0.3,
'b': 0.6,
'c': 0.1
},
'3': {
'a': 1,
}
}
);
If you have an existing HMM and want to reestimate it with some training samples you can do it with reestimate
method:
aModel.reestimate( [ [ 'b', 'c', 'b', 'a' ], [ 'b', 'c', 'b', 'b' ], [ 'b', 'c', 'b', 'd' ] ] );
Optionally you can give an array of optimal paths as second parameter. If you don't give that array of paths the method will compute the optimal paths for each one of given items, so be sure that given items could be generated with the model.
To initialize a new Hidden Markov Model without having a previous model you can use initialize
method:
aModel.initialize( [ [ 'b', 'c', 'b', 'a' ], [ 'b', 'c', 'b', 'b' ], [ 'b', 'c', 'b', 'd' ] ], 3 );
This method will initialize the model, using linear segmentation to decide which will be the optimal state sequence for each one of the items and after that will reestimate the model.
This implementation offers methods to get the real generation probability (using Forward algorithm), the Viterbi approximation and the most probable state sequence.
generationProbability
method will return the probability that those symbols are generated in that order by the model.viterbiApproximation
method will return the probability that most probable state sequence generates given symbols in given order.optimalStateSequence
will return the most probable state sequence as an array.var hmm = require( './hmm.js' );
var milk = new hmm();
var something = [ 'white', 'bottle' ];
milk.initialize( [ something ], 2 );
console.log( 'The probability that something white in a bottle is milk is ' + ( milk.generationProbability( something ) * 100 ) + '%.' );
You can check internal details of the model with print
method, which will print details on console:
> milk.print();
A 1 2 F
1 0 1 0
2 0 0 1
F 0 0 0
B white bottle
1 1 0
2 0 1
Initial:
1: 1
2: 0
F: 0
Final: F
You'll need to install development dependencies:
npm install --only=dev
Documentation can be generated running:
npm run-script doc
HTML documentation will be available in doc
folder.
Although this module is shipped already built you can build it again from CoffeeScript sources running:
npm run-script prepublish
You can also run the tests and get coverage information. To run the tests on CoffeeScript source just run:
npm test
If you want to generate additional coverage information run:
npm run-script test-cov
And then you'll find coverage information in coverage
folder.
Version | Tag | Published |
---|---|---|
0.0.5 | latest | 4yrs ago |