-
Notifications
You must be signed in to change notification settings - Fork 135
/
HLearn.cabal
218 lines (176 loc) · 5.82 KB
/
HLearn.cabal
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
Name: HLearn
Version: 2.0.1.0
Synopsis: Homomorphic machine learning
Category: Data Mining, Machine Learning, Algorithms, Data structures
License: BSD3
License-file: LICENSE
Author: Mike izbicki
Maintainer: [email protected]
Build-Type: Simple
Cabal-Version: >=1.8
homepage: http://github.com/mikeizbicki/HLearn/
bug-reports: http://github.com/mikeizbicki/HLearn/issues
Description:
HLearn is an experimental, but high performance machine learning library.
For example, it currently has the world's fastest nearest neighbor implementation.
It uses <http://github.com/mikeizbicki/subhask subhask> for fast numeric computations.
The <http://github.com/mikeizbicki/hlearn/blob/master/README.md README> on github contains much more information.
source-repository head
type: git
location: http://github.com/mikeizbicki/hlearn
--------------------------------------------------------------------------------
Library
Build-Depends:
-- common dependencies
base >= 4.8 && <4.9,
subhask == 0.1.1.0,
-- control
mtl >= 2.1.2,
-- i/o
ansi-terminal >= 0.6.1.1,
directory >= 1.2,
time >= 1.4.2
-- visualization
-- diagrams-svg >= 0.6,
-- diagrams-lib >= 1.3,
-- process >= 1.1
-- graphviz >= 2999.16
hs-source-dirs:
src
Exposed-modules:
HLearn.History
HLearn.History.Timing
-- HLearn.Data.Graph
-- HLearn.Data.Image
HLearn.Data.LoadData
HLearn.Data.SpaceTree
HLearn.Data.SpaceTree.CoverTree
HLearn.Data.SpaceTree.CoverTree_Specialized
HLearn.Data.SpaceTree.CoverTree.Unsafe
HLearn.Data.SpaceTree.Algorithms
HLearn.Data.SpaceTree.Algorithms_Specialized
-- HLearn.Evaluation.CrossValidation
HLearn.Classifiers.Linear
HLearn.Models.Distributions
HLearn.Optimization.Multivariate
HLearn.Optimization.Univariate
-- HLearn.Optimization.Amoeba
-- HLearn.Optimization.Conic
-- HLearn.Optimization.StepSize
-- HLearn.Optimization.StochasticGradientDescent
-- HLearn.Optimization.StepSize.Linear
-- HLearn.Optimization.StepSize.Const
-- HLearn.Optimization.StepSize.AlmeidaLanglois
Other-modules:
Extensions:
FlexibleInstances
FlexibleContexts
MultiParamTypeClasses
FunctionalDependencies
UndecidableInstances
ScopedTypeVariables
BangPatterns
TypeOperators
GeneralizedNewtypeDeriving
TypeFamilies
StandaloneDeriving
GADTs
KindSignatures
ConstraintKinds
DeriveDataTypeable
RankNTypes
ImpredicativeTypes
DataKinds
PolyKinds
AutoDeriveTypeable
TemplateHaskell
QuasiQuotes
RebindableSyntax
NoImplicitPrelude
UnboxedTuples
MagicHash
PolymorphicComponents
ExplicitNamespaces
EmptyDataDecls
PartialTypeSignatures
MultiWayIf
--------------------------------------------------------------------------------
Test-Suite BashTests
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: BashTests.hs
build-depends: base, process
---------------------------------------
Test-Suite QuickCheck-Unoptimized
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: QuickCheck.hs
ghc-options:
-O0
build-depends:
subhask,
HLearn,
test-framework-quickcheck2 >= 0.3.0,
test-framework >= 0.8.0
Test-Suite QuickCheck-Optimized
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: QuickCheck.hs
ghc-options:
-O1
build-depends:
subhask,
HLearn,
test-framework-quickcheck2 >= 0.3.0,
test-framework >= 0.8.0
---------------------------------------
Test-Suite Example0001
type: exitcode-stdio-1.0
hs-source-dirs: examples
main-is: example0001-optimization-univariate.hs
build-depends: HLearn, subhask, base
Test-Suite Example0002
type: exitcode-stdio-1.0
hs-source-dirs: examples
main-is: example0002-optimization-multivariate.hs
build-depends: HLearn, subhask, base
Test-Suite Example0003
type: exitcode-stdio-1.0
hs-source-dirs: examples
main-is: example0003-classification.hs
build-depends: HLearn, subhask, base
--------------------------------------------------------------------------------
executable hlearn-allknn
main-is: Main.hs
hs-source-dirs: executables/hlearn-allknn
ghc-options:
-threaded
-rtsopts
-funbox-strict-fields
-fexcess-precision
-- -prof -osuf p_o -hisuf p_hi
-fllvm
-optlo-O3
-optlo-enable-fp-mad
-optlo-enable-no-infs-fp-math
-optlo-enable-no-nans-fp-math
-optlo-enable-unsafe-fp-math
-- -ddump-to-file
-- -ddump-rule-firings
-- -ddump-rule-rewrites
-- -ddump-rules
-- -ddump-simpl
-- -ddump-simpl-stats
-- -dppr-debug
-- -dsuppress-module-prefixes
-- -dsuppress-uniques
-- -dsuppress-idinfo
-- -dsuppress-coercions
-- -dsuppress-type-applications
-- -ddump-cmm
build-depends:
base ,
HLearn ,
subhask ,
cmdargs,
MonadRandom