For NLP Assignment #4.
You may change the behaviour of the HMM by modifying the parameters written in the bottom text box. Each line describes each state in the following syntax:
go(state, probability) : Go to the state with given probability.
emit(symbol, probability) : Emit a symbol with given probability.
start: go(noun,0.8) go(verb,0.2) noun: go(noun,0.1) go(verb,0.8) go(end,0.1) emit(fish,0.8) emit(sleep,0.2) verb: go(noun,0.2) go(verb,0.1) go(end,0.7) emit(fish,0.4) emit(sleep,0.6)
Viterbi-feb27.diff (Diff to the previous version)