Haskell implementations of Hidden Markov Models & related algorithms from AIMA book
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 35 lines 1.1 kB view raw
1cabal-version: 2.4 2-- Initial package description 'hmm.cabal' generated by 'cabal 3-- init'. For further documentation, see 4-- http://haskell.org/cabal/users-guide/ 5 6name: hmm 7version: 0.1.0.0 8-- synopsis: 9-- description: 10-- bug-reports: 11license: Apache-2.0 12license-file: LICENSE 13author: Kaushik Chakraborty 14maintainer: kaushik.chakraborty3@cognizant.com 15-- copyright: 16category: Math 17extra-source-files: CHANGELOG.md, README.md 18 19library 20 exposed-modules: HMM 21 CHMM 22 -- other-modules: 23 -- other-extensions: 24 build-depends: base ^>=4.12.0.0 && < 4.13 25 , papa >=0.3.1 && < 1 26 , linear >= 1.20.8 && < 1.21 27 , vector >= 0.12.0 && < 0.13 28 , mtl >= 2.2.2 && < 2.3 29 , transformers >= 0.5.6 && < 0.6 30 , hmatrix >= 0.19.0 && < 0.20 31 , combinatorial 32 hs-source-dirs: src 33 default-language: Haskell2010 34 default-extensions: NoImplicitPrelude 35 ghc-options: -Wall -O2