packages feed

data-named-0.4.0: data-named.cabal

name:               data-named
version:            0.4.0
synopsis:           Data types for named entities
description:
    The library provides data types which can be used to represent
    forest structures with labels stored in internal nodes and
    words kept in leaves.  In particular, those types are well suited
    for representing the layer of named entities (NEs).
    .
    The IOB method is implemented in the Data.Named.IOB module and can
    be used to translate between a forest of entities and a sequence
    of compound IOB labels.  This method can be used together with a
    sequence classifier to indirectly model forest structures.
    .
    The Data.Named.Graph module can be used to represent more general,
    graph structures of entities.  The module provides also a lossy
    conversion from a DAG to a disjoint forest of entities.
license:            BSD3
license-file:       LICENSE
cabal-version:      >= 1.6
copyright:          Copyright (c) 2012 IPI PAN
author:             Jakub Waszczuk
maintainer:         waszczuk.kuba@gmail.com
stability:          experimental
category:           Natural Language Processing
homepage:           https://github.com/kawu/data-named
build-type:         Simple

library
    build-depends:
        base >= 4 && < 5
      , containers
      , text
      , attoparsec

    exposed-modules:
        Data.Named.Tree
      , Data.Named.Graph
      , Data.Named.IOB
      , Text.Named.Enamex

    ghc-options: -Wall

source-repository head
    type: git
    location: git://github.com/kawu/data-named.git