ngram-0.1.0.1: ngram.cabal
-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: 1aef9b38a31cf7e0b80ac476b1679088314bbb55e0168d149928c083323d151c
name: ngram
version: 0.1.0.1
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
default-extensions: Strict StrictData
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 ngramClassifier
main-is: NGramClassifier.hs
other-modules:
Paths_ngram
hs-source-dirs:
app
default-extensions: Strict StrictData
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