-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmarvin.cabal
More file actions
97 lines (92 loc) · 2.48 KB
/
Copy pathmarvin.cabal
File metadata and controls
97 lines (92 loc) · 2.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: marvin
version: 0.1.0
build-type: Simple
cabal-version: >= 1.18
copyright: 2016 Gábor Hermann
license: Apache
synopsis: A computer science bachelor's thesis: a small machine learning library in Haskell.
library
default-language: Haskell2010
exposed-modules:
Marvin.API.Algorithms.KMeans
, Marvin.API.Algorithms.LinearRegression
, Marvin.API.Algorithms.LogisticRegression
, Marvin.API.Algorithms.NaiveBayes
, Marvin.API
, Marvin.Examples.HousingPrices
, Marvin.Examples.SpamClassification
, Marvin.Examples.NetworkIntrusionDetection
, Marvin.GUI.Main
other-modules:
Marvin.API.Algorithms.Internal.GradientDescent
, Marvin.API.Meta.Pipeline
, Marvin.API.Meta.Model
, Marvin.API.Meta.Evaluator
, Marvin.API.Meta.PipelineModel
, Marvin.API.Preprocess.FeatureScaling
, Marvin.API.Preprocess.OneHotEncode
, Marvin.API.Table.Column
, Marvin.API.Table.Internal
, Marvin.API.Table.PrettyPrint
, Marvin.API.Table.Parse
, Marvin.API.Table.TrainTestSplit
, Marvin.API.EvaluationMetrics
, Marvin.API.Table.DataType
, Marvin.API.Fallible
, Marvin.GUI.AlgorithmDescriptor
, Marvin.GUI.ConfigWindow
hs-source-dirs: src
build-depends:
base
, hmatrix == 0.17.0.2
, cassava == 0.4.5.0
, bytestring
, transformers
, containers
, vector
, mtl == 2.2.1
, criterion
, array
, split
, boxes == 0.1.4
, gtk == 0.14.5
, directory
, glade
, text
, random
, deepseq
, matrix
, MonadRandom
, dlist
, dlist == 0.8.0.2
, mwc-random
executable marvinGUI
build-depends: base, marvin
default-language: Haskell2010
hs-source-dirs: executable
main-is: Main.hs
test-suite hspec
build-depends:
base
, marvin
, hspec
, hmatrix
, criterion
, QuickCheck
, cassava
, bytestring
, mtl
, array
, vector
, random == 1.1
, containers
, boxes == 0.1.4
, deepseq
, text
, dlist
, dlist == 0.8.0.2
, mwc-random
default-language: Haskell2010
hs-source-dirs: src test-suite
main-is: Spec.hs
type: exitcode-stdio-1.0