I’m working through the Course 2 Week 2 notebook assignment. Reading the portion summarizing how the Viterbi Initialization works. Seeing the following:
Conceptually, it looks like this:
\textrm{best_probs}[s_{idx}, i] = \mathbf{A}[s_{idx}, i] \times \mathbf{B}[i, corpus[0] ]
Still wrapping my head around the initialization algorithm, but this seems like a typo to me. Shouldn’t it be:
Conceptually, it looks like this:
\textrm{best_probs}[i, 0] = \mathbf{A}[s_{idx}, i] \times \mathbf{B}[i, vocab[corpus[0]] ]