diff --git a/examples/mle.jl b/examples/mle.jl index a33e95fd..0eae679f 100644 --- a/examples/mle.jl +++ b/examples/mle.jl @@ -13,7 +13,7 @@ plot(y, linetype=:steppre, size=(600,200)) # For now `HMMBase` does not handle the initialization of the parameters. # Hence we must instantiate an initial HMM by hand. -hmm = HMM([0.5 0.5; 0.5 0.5], [Normal(0,1), Normal(10,1)]) +hmm = HMM([0.5 0.5; 0.5 0.5], [Normal(-1,1), Normal(15,1)]) hmm, log_likelihood = fit_mle!(hmm, y, verbose=true) #-