Content deleted Content added
Line 301:
<source lang="python">
states = ('Healthy', 'Fever')
observations = ('normal', 'cold', 'dizzy')
Line 316 ⟶ 315:
for l, x_i in enumerate(x):
fwd = []
for st in states: ▼
▲ for st in states:
f_prev = f_curr
|