Chapter 5. Hidden Markov Models

Intuition informs much of what we do: for example, it tells us that certain words tend to be a certain part of speech, or that if a user visits a signup page she has a higher probability of becoming a customer. But how would you build a model around intuition?

Hidden Markov Models, which are the subject of this chapter, are versed in finding the underlying state of a given system using observations and an assumption about how those states work. In this chapter, we will first talk about how to track user states given their actions, then explore more about what a Hidden Markov Model is, and finally build a part-of-speech tagger using the Brown Corpus.

Note

Hidden Markov Models can be either supervised or unsupervised and also are called Markovian due to their reliance on a Markov Model. They work well where there doesn’t need to be a lot of historical information built into the model. They also work well for adding localized context to a classification.

Tracking User Behavior Using State Machines

Have you ever heard of the sales funnel? This is the idea that there are different levels of customer interaction. People will start as prospects and then transition into more engaged states (see Figure 5-1).

sales funnel
Figure 5-1. The generalized sales funnel, from prospect to customer

Let’s say that we have an online store and determine that out of prospects that ...

Get Thoughtful Machine Learning now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.