-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsvm-simple.cabal
92 lines (87 loc) · 2.46 KB
/
svm-simple.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
name: svm-simple
version: 0.2.7
synopsis: Medium level, simplified, bindings to libsvm
description:
This is a set of simplified bindings to libsvm <http://www.csie.ntu.edu.tw/~cjlin/libsvm/> suite
of support vector machines. This package provides tools for classification, one-class classification
and support vector regression.
.
Changes in version 0.2.6.1
.
* Bumped dependencies
.
Changes in version 0.2.6
.
* Fixed a critical bug with training and crossvalidation
.
* Slight performance improvements
.
Changes in version 0.2.5
.
* Crossvalidation for the high level interface
.
Changes in version 0.2.2
.
* Rather ugly binary instances
.
Changes in version 0.2.1
.
* Added operations for saving and loading SVMs
.
Changes in version 0.2.0
.
* Moved the low level stuff into AI.SVM.Base
.
Changes in version 0.1
.
* Initial version
.
license: BSD3
license-file: LICENSE
author: Ville Tirronen <aleator@gmail.com>
maintainer: Ville Tirronen <aleator@gmail.com>
Paulo Tanimoto <ptanimoto@gmail.com>
homepage: http://github.com/aleator/Simple-SVM
bug-reports: http://github.com/aleator/Simple-SVM/issues
category: AI, Pattern Classification, Algorithms, Support Vector Machine
build-type: Simple
cabal-version: >= 1.8
-- Flag benchmark
-- Description: Compile the benchmarking system
-- Default: False
library
-- extra-source-files:
-- Examples/SmokeTest.hs
-- Examples/Plot.hs
-- Examples/PlotOneClass.hs
other-modules:
AI.SVM.Common
Exposed-modules:
AI.SVM.Simple
AI.SVM.Base
build-depends:
base >= 4 && < 5,
bytestring ,
bindings-svm ,
binary ,
mwc-random ,
vector ,
directory ,
containers ,
deepseq ,
monad-par
-- executable svm-benchmark
-- if !flag(benchmark)
-- buildable: False
-- main-is: Benchmark.hs
-- build-depends:
-- base >= 4 && < 5,
-- bytestring >= 0.9.1 && < 0.10,
-- bindings-svm >= 0.2.0 && < 0.3,
-- binary >= 0.5 && < 0.6,
-- mwc-random >= 0.8 && < 0.12,
-- vector >= 0.7.0.1 && < 1.1,
-- directory >= 1.1.0.0 && < 1.4,
-- containers >= 0.4.2.0 && < 0.5,
-- deepseq >= 1.1 && < 1.6,
-- criterion >= 0.6 && < 1.0