learning-hmm 0.1.1.0 → 0.1.1.1
raw patch · 2 files changed
+2/−2 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- learning-hmm.cabal +1/−1
- src/Learning/HMM.hs +1/−1
learning-hmm.cabal view
@@ -1,5 +1,5 @@ name: learning-hmm-version: 0.1.1.0+version: 0.1.1.1 stability: experimental synopsis: Yet another library for hidden Markov models
src/Learning/HMM.hs view
@@ -135,7 +135,7 @@ where sim _ 0 = return [] sim s t = do s' <- sample $ rvar $ w s- x' <- sample $ rvar $ phi s+ x' <- sample $ rvar $ phi s' ((s', x') :) <$> sim s' (t - 1) pi0 = initialStateDist model w = transitionDist model