@hackage chatter0.3.0.0
A library of simple NLP algorithms.
Installation
Dependencies (25)
- MonadRandom >=0.1.2
- QuickCheck <2.6
- array
- base >=4 && <=6
- bytestring >=0.10.0.0
- cereal >=0.4.0.1 Show all…
Dependents (1)
@hackage/acme-everything
chatter is a collection of simple Natural Language Processing algorithms.
Chatter supports:
Part of speech tagging with Averaged Perceptrons. Based on the Python implementation by Matthew Honnibal: (http://honnibal.wordpress.com/2013/09/11/a-good-part-of-speechpos-tagger-in-about-200-lines-of-python/) See
NLP.POSfor the details of part-of-speech tagging with chatter.Document similarity; A cosine-based similarity measure, and TF-IDF calculations, are available in the
NLP.Similarity.VectorSimmodule.Information Extraction patterns via (http://www.haskell.org/haskellwiki/Parsec/) Parsec