ngram-0.1.0.0: ngram.cabal
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: af4ceddbe5e5c69c25bcb8f6b1751761dbfff6d66511ba80f8b6cde5cba29c91
name: ngram
version: 0.1.0.0
synopsis: Ngram models for compressing and classifying text.
description: A library and collection of commands for training, evaluating, and applying n-gram-based sequence models.
category: natural-language-processing, machine-learning
homepage: https://github.com/TomLippincott/ngram#readme
bug-reports: https://github.com/TomLippincott/ngram/issues
author: Tom Lippincott
maintainer: tom@cs.jhu.edu
copyright: 2018 Tom Lippincott
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files:
README.md
source-repository head
type: git
location: https://github.com/TomLippincott/ngram
library
exposed-modules:
Codec.Compression.PPM
Codec.Compression.PPM.Coding
Codec.Compression.PPM.Trie
Codec.Compression.PPM.Utils
other-modules:
Paths_ngram
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, cereal >=0.5.4.0
, cereal-text >=0.1.0.2
, containers >=0.5.10.2
, text >=1.2.2
default-language: Haskell2010
executable ppm
main-is: PPMClassifier.hs
other-modules:
Paths_ngram
hs-source-dirs:
app
ghc-options: -threaded -rtsopts
build-depends:
base >=4.7 && <5
, bytestring >=0.10.8.1
, cereal >=0.5.4.0
, cereal-text >=0.1.0.2
, containers >=0.5.10.2
, ngram
, optparse-generic >=1.2.2
, text >=1.2.2
, zlib >=0.6.1
default-language: Haskell2010