Forward–backward algorithm: Difference between revisions

Content deleted Content added
Yobot (talk | contribs)
m External links: WP:CHECKWIKI error fixes - Replaced endash with hyphen in sortkey per WP:MCSTJR using AWB (9100)
Line 304:
observations = ('normal', 'cold', 'dizzy')
transition_probability = {
start_probability = {'Healthy': 0.6, 'Fever': 0.4}
transition_probability = {
'Healthy' : {'Healthy': 0.69, 'Fever': 0.3, 'E': 0.01},
'Fever' : {'Healthy': 0.4, 'Fever': 0.59, 'E': 0.01},
}
start_probability = {'Healthy': 0.6, 'Fever': 0.4}
 
emission_probability = {
'Healthy' : {'normal': 0.5, 'cold': 0.4, 'dizzy': 0.1},