Skip to content

Commit

Permalink
Bugfix in anglican_hmm.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hong Ge committed May 18, 2016
1 parent b387985 commit 1fbd8bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/anglican_hmm.jl
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ end
@assume(states[1] ~ initial)
for i = 2:length(data)
@assume(states[i] ~ trans[states[i-1]])
@observe(data[i] ~ Normal(statesmean[states[i]], 0.4))
@observe(data[i] ~ Normal(statesmean[states[i]], 1))
end
@predict states
end
Expand Down

0 comments on commit 1fbd8bb

Please sign in to comment.