Proper Treatment 正當作法/ cs504/ 2007/ posts/ Markov models
2008-08-17 19:19

There is no homework to read or submit this week. However, I highly recommend that you experiment with markov.scm, which implements probabilistic inference using hidden Markov models.

The model is defined in hmm. Please change it to describe your favorite process: office work, politics, baseball, whatever. The Scheme functions best-path and path-best perform two different kinds of inference. The best-path function finds the most likely sequence of states, which is appropriate when the utility function gives no partial credit for even a slightly incorrect state sequence. The path-best function finds the sequence of most likely states, which is appropriate when the utility function gives partial credit for each correct state in the inferred sequence.

Here are some questions to ask:

The remaining three questions address how the implementation fails to scale to longer sequences.

Please tell me about any discoveries or problems you encounter!