2015-08-17 23:32:00 +02:00
|
|
|
name: geval
|
2020-10-17 20:53:31 +02:00
|
|
|
version: 1.38.0.0
|
2015-08-25 20:47:52 +02:00
|
|
|
synopsis: Machine learning evaluation tools
|
2015-08-17 23:32:00 +02:00
|
|
|
description: Please see README.md
|
|
|
|
homepage: http://github.com/name/project
|
|
|
|
license: Apache
|
|
|
|
license-file: LICENSE
|
2015-08-25 20:47:52 +02:00
|
|
|
author: Filip Graliński
|
2015-08-22 19:44:46 +02:00
|
|
|
maintainer: filipg@amu.edu.pl
|
2015-08-17 23:32:00 +02:00
|
|
|
-- copyright:
|
|
|
|
category: Web
|
|
|
|
build-type: Simple
|
|
|
|
-- extra-source-files:
|
|
|
|
cabal-version: >=1.10
|
|
|
|
|
|
|
|
library
|
|
|
|
hs-source-dirs: src
|
2015-08-23 08:14:47 +02:00
|
|
|
exposed-modules: GEval.Core
|
2019-08-10 12:30:17 +02:00
|
|
|
, GEval.Metric
|
2019-09-21 14:26:22 +02:00
|
|
|
, GEval.MetricsMechanics
|
2019-08-21 23:44:18 +02:00
|
|
|
, GEval.MetricsMeta
|
2019-08-11 21:40:11 +02:00
|
|
|
, GEval.EvaluationScheme
|
2019-08-10 12:30:17 +02:00
|
|
|
, GEval.CreateChallenge
|
2015-08-23 08:14:47 +02:00
|
|
|
, GEval.OptionsParser
|
2015-08-24 22:23:35 +02:00
|
|
|
, GEval.BLEU
|
2019-08-22 09:48:49 +02:00
|
|
|
, GEval.Clippings
|
2016-08-01 22:47:43 +02:00
|
|
|
, GEval.PrecisionRecall
|
2017-03-24 18:26:12 +01:00
|
|
|
, GEval.ClusteringMetrics
|
2016-08-02 08:46:25 +02:00
|
|
|
, GEval.Common
|
2019-09-07 12:34:45 +02:00
|
|
|
, GEval.Probability
|
2017-04-01 12:24:36 +02:00
|
|
|
, GEval.LogLossHashed
|
2017-08-31 14:14:27 +02:00
|
|
|
, GEval.CharMatch
|
2018-01-09 11:17:11 +01:00
|
|
|
, GEval.LineByLine
|
2018-05-15 09:38:13 +02:00
|
|
|
, GEval.BIO
|
2018-07-10 11:18:52 +02:00
|
|
|
, GEval.ParseParams
|
2018-08-09 14:08:54 +02:00
|
|
|
, GEval.ProbList
|
2018-08-27 17:57:07 +02:00
|
|
|
, GEval.Submit
|
2019-07-30 10:14:10 +02:00
|
|
|
, GEval.Validation
|
2018-05-17 08:26:57 +02:00
|
|
|
, Data.Conduit.AutoDecompress
|
2018-05-12 10:53:21 +02:00
|
|
|
, Data.Conduit.SmartSource
|
2018-08-01 22:39:34 +02:00
|
|
|
, Data.Conduit.Rank
|
2018-08-02 12:50:13 +02:00
|
|
|
, GEval.FeatureExtractor
|
2018-09-25 08:13:57 +02:00
|
|
|
, GEval.WER
|
2018-08-11 22:59:10 +02:00
|
|
|
, Text.Tokenizer
|
2018-10-17 17:52:43 +02:00
|
|
|
, GEval.Annotation
|
2019-01-10 08:15:34 +01:00
|
|
|
, GEval.BlackBoxDebugging
|
2019-01-10 09:58:04 +01:00
|
|
|
, Text.WordShape
|
2019-01-27 20:18:39 +01:00
|
|
|
, Data.Statistics.Kendall
|
2019-02-13 17:53:30 +01:00
|
|
|
, GEval.Selector
|
2019-03-11 11:42:26 +01:00
|
|
|
, Data.Statistics.Loess
|
|
|
|
, Data.Statistics.Calibration
|
2019-12-14 20:59:00 +01:00
|
|
|
, Data.CartesianStrings
|
2019-12-16 13:01:41 +01:00
|
|
|
, Data.SplitIntoCrossTabs
|
2020-01-25 22:05:11 +01:00
|
|
|
, Data.Conduit.Bootstrap
|
2020-01-28 20:32:09 +01:00
|
|
|
, GEval.Formatting
|
2020-02-17 22:29:27 +01:00
|
|
|
, Data.Conduit.Header
|
2020-05-12 17:13:52 +02:00
|
|
|
, GEval.DataSource
|
2020-05-13 16:45:15 +02:00
|
|
|
, GEval.Model
|
|
|
|
, GEval.ModelTraining
|
2020-07-01 18:24:45 +02:00
|
|
|
, GEval.MatchingSpecification
|
2018-06-13 12:19:06 +02:00
|
|
|
, Paths_geval
|
2015-08-17 23:32:00 +02:00
|
|
|
build-depends: base >= 4.7 && < 5
|
2015-08-22 19:29:39 +02:00
|
|
|
, cond
|
2018-05-19 13:49:53 +02:00
|
|
|
, conduit >= 1.3.0
|
2015-08-19 22:14:34 +02:00
|
|
|
, conduit-combinators
|
|
|
|
, conduit-extra
|
2015-08-22 19:29:39 +02:00
|
|
|
, directory
|
2015-08-21 22:56:32 +02:00
|
|
|
, filepath
|
2015-08-23 08:54:08 +02:00
|
|
|
, here
|
2015-08-24 22:23:35 +02:00
|
|
|
, multiset
|
2015-08-22 19:44:46 +02:00
|
|
|
, optparse-applicative
|
2015-08-19 22:14:34 +02:00
|
|
|
, resourcet
|
2015-08-24 23:40:40 +02:00
|
|
|
, split
|
2015-08-19 22:14:34 +02:00
|
|
|
, text
|
2015-11-06 22:42:08 +01:00
|
|
|
, unix
|
2016-08-01 22:47:43 +02:00
|
|
|
, fgl
|
2016-08-02 08:37:29 +02:00
|
|
|
, attoparsec
|
2017-03-24 08:50:57 +01:00
|
|
|
, unordered-containers
|
|
|
|
, hashable
|
2017-04-01 12:24:36 +02:00
|
|
|
, murmur3
|
|
|
|
, vector
|
|
|
|
, mtl
|
2017-08-31 14:14:27 +02:00
|
|
|
, edit-distance
|
2018-05-12 10:53:21 +02:00
|
|
|
, bytestring
|
|
|
|
, http-conduit
|
|
|
|
, transformers
|
2018-05-17 08:26:57 +02:00
|
|
|
, word8
|
|
|
|
, primitive
|
|
|
|
, transformers-base
|
|
|
|
, bzlib-conduit
|
|
|
|
, lzma-conduit
|
2018-06-28 15:36:47 +02:00
|
|
|
, Glob
|
2018-06-28 16:32:46 +02:00
|
|
|
, naturalcomp
|
2018-07-10 11:18:52 +02:00
|
|
|
, containers
|
2018-08-02 12:50:13 +02:00
|
|
|
, statistics
|
2018-08-11 22:59:10 +02:00
|
|
|
, pcre-heavy
|
2019-08-11 21:40:11 +02:00
|
|
|
, pcre-light
|
2018-08-27 17:57:07 +02:00
|
|
|
, process
|
|
|
|
, uri-encode
|
2018-09-12 20:52:56 +02:00
|
|
|
, MissingH
|
2018-09-25 08:13:57 +02:00
|
|
|
, array
|
2018-10-17 17:52:43 +02:00
|
|
|
, Munkres
|
2019-01-27 20:18:39 +01:00
|
|
|
, vector-algorithms
|
2019-02-13 17:53:30 +01:00
|
|
|
, aeson
|
|
|
|
, aeson-pretty
|
2019-03-11 11:42:26 +01:00
|
|
|
, integration
|
2019-03-15 14:58:16 +01:00
|
|
|
, Chart
|
|
|
|
, Chart-cairo
|
2019-05-23 16:16:05 +02:00
|
|
|
, errors
|
2019-07-30 10:14:10 +02:00
|
|
|
, filemanip
|
2019-08-10 15:54:12 +02:00
|
|
|
, temporary
|
2019-08-11 21:40:11 +02:00
|
|
|
, utf8-string
|
2019-09-21 14:26:22 +02:00
|
|
|
, singletons
|
2019-12-16 13:01:41 +01:00
|
|
|
, ordered-containers
|
2020-01-25 22:05:11 +01:00
|
|
|
, random
|
2020-01-30 23:04:36 +01:00
|
|
|
, rainbow
|
2020-05-13 16:45:15 +02:00
|
|
|
, yaml
|
2020-07-02 08:16:05 +02:00
|
|
|
, extra
|
2015-08-17 23:32:00 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
2015-08-25 16:44:53 +02:00
|
|
|
executable geval
|
2015-08-17 23:32:00 +02:00
|
|
|
hs-source-dirs: app
|
|
|
|
main-is: Main.hs
|
2018-07-09 09:31:15 +02:00
|
|
|
ghc-options: -threaded -rtsopts "-with-rtsopts=-N -qg"
|
2015-08-17 23:32:00 +02:00
|
|
|
build-depends: base
|
|
|
|
, geval
|
2015-08-22 00:00:46 +02:00
|
|
|
, optparse-applicative
|
2016-08-01 22:47:43 +02:00
|
|
|
, fgl
|
2018-06-28 16:22:22 +02:00
|
|
|
, filepath
|
2018-07-10 16:22:28 +02:00
|
|
|
, containers
|
|
|
|
, unordered-containers
|
|
|
|
, text
|
2015-08-17 23:32:00 +02:00
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
test-suite geval-test
|
|
|
|
type: exitcode-stdio-1.0
|
|
|
|
hs-source-dirs: test
|
|
|
|
main-is: Spec.hs
|
|
|
|
build-depends: base
|
|
|
|
, geval
|
2015-08-19 22:14:34 +02:00
|
|
|
, hspec
|
2015-08-19 23:24:19 +02:00
|
|
|
, HUnit
|
2015-08-23 07:40:37 +02:00
|
|
|
, optparse-applicative
|
2016-08-02 08:37:29 +02:00
|
|
|
, text
|
|
|
|
, attoparsec
|
2017-08-31 14:14:27 +02:00
|
|
|
, edit-distance
|
2018-05-12 10:53:21 +02:00
|
|
|
, resourcet
|
|
|
|
, conduit
|
|
|
|
, conduit-extra
|
2018-05-26 21:10:22 +02:00
|
|
|
, conduit
|
2018-07-10 11:18:52 +02:00
|
|
|
, containers
|
2018-08-27 17:57:07 +02:00
|
|
|
, process
|
|
|
|
, directory
|
|
|
|
, temporary
|
|
|
|
, silently
|
2019-01-27 20:18:39 +01:00
|
|
|
, vector
|
|
|
|
, statistics
|
2019-08-21 23:44:18 +02:00
|
|
|
, filepath
|
2015-08-17 23:32:00 +02:00
|
|
|
ghc-options: -threaded -rtsopts -with-rtsopts=-N
|
|
|
|
default-language: Haskell2010
|
|
|
|
|
|
|
|
source-repository head
|
|
|
|
type: git
|
2015-12-20 18:10:20 +01:00
|
|
|
location: git://gonito.net/geval
|