This document provides an overview of Hidden Markov Models (HMM) including:
- The three main elements of HMMs - forward-backward algorithm for evaluation, Baum-Welch algorithm for learning parameters, and Viterbi algorithm for decoding states.
- An example of using HMM for weather prediction with two states (sunny, rainy) and three observations (walk, shop, travel).
- How HMMs can be applied in Python to model stock market returns using a Gaussian model with daily NIFTY index data over 10 years.