forked from mikeizbicki/hmm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hmm.cabal
22 lines (20 loc) · 951 Bytes
/
hmm.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Name: hmm
Version: 0.3
Cabal-Version: >= 1.2
Build-type: Simple
License: BSD3
License-file: LICENSE
Author: Mike Izbicki
Maintainer: mike@izbicki.me
Homepage: https://github.com/mikeizbicki/hmm
Category: Algorithms, Data mining, Machine learning
Synopsis: A hidden markov model library
Description: Data.HMM is a library for using Hidden Markov Models with Haskell. Commonly used algoriths (i.e. the forward and backwards algorithms, Viterbi, and Baum-Welch) are implemented. The best way to learn to use it is to visit the tutorial at http:\/\/izbicki.me\/blog\/using-hmms-in-haskell-for-bioinformatics. The tutorial also includes performance benchmarks that you should be aware of.
Library
Build-Depends:
base,logfloat,data-memocombinators,list-extras,array,
binary >=0.7.1 && <0.8,
bytestring >=0.10.0 && <0.11,
containers >=0.5.0 && <0.6
Exposed-modules:
Data.HMM