Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions svm-simple.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,29 @@ 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.
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
* Fixed a critical bug with training and crossvalidation
.
* Slight performance improvements
.
Changes in version 0.2.5
.
* Crossvalidation for the high level interface
* 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
* Added operations for saving and loading SVMs
.
Changes in version 0.2.0
.
Expand All @@ -51,7 +51,7 @@ cabal-version: >= 1.8
-- Flag benchmark
-- Description: Compile the benchmarking system
-- Default: False


library
-- extra-source-files:
Expand All @@ -64,16 +64,16 @@ library
AI.SVM.Simple
AI.SVM.Base
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.13,
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,
monad-par >= 0.1.0.3 && < 0.1.1
base >= 4 && < 5,
bytestring >= 0.9.1,
bindings-svm >= 0.2.0,
binary >= 0.5,
mwc-random >= 0.8,
vector >= 0.7.0.1,
directory >= 1.1.0.0,
containers >= 0.4.2.0,
deepseq >= 1.1,
monad-par >= 0.1.0.3

-- executable svm-benchmark
-- if !flag(benchmark)
Expand Down