Search Results

1
vote

What’s a good natural language library to use for paraphrasing?

There was some discussion of Grok. This is now supported as OpenCCG, and will be reimplemented in OpenNLP as well. You can find OpenCCG at …
1
vote

NLP: Building (small) corpora, or “Where to get lots of not-too-specialized English-language text files?”

If you're willing to pay money, you should check out the data available at the Linguistic Data Consortium, such as the Penn Treebank. …
2
votes

Your favorite natural language parser?

The Curran & Clark Parser (available here: http://svn.ask.it.usyd.edu.au/trac/candc/wiki) parsers words into CCG categ …
5
votes

Algorithms or libraries for textual analysis, specifically: dominant words, phrases across text, and collection of text

One option for what you're doing is term frequency to inverse document frequency, or tf-idf. The strongest terms will have the highest weighting under this calculation. Check if out here: …
8
votes

Sentiment analysis for twitter in python

With most of these kinds of applications, you'll have to roll much of your own code for a statistical classification task. As Lucka suggested, NLTK is the perfect tool for natural language manipula …
4
votes

Looking for any free tagged english corpus(es)

There's some data freely available in the NLTK Corpora package. http://nltk.org Dan Bikel offers his parser for free on his website with a train …
1
vote

cli grammar checker for determining tense

You might be able to use morpha for this purpose. Morpha is a lemmatizer that splits endings fr …