1
vote
3answers
65 views
Identifying geographical locations in text
What kind of work has been done to determine whether a specific string pertains to a geographical location? For example:
'troy, ny'
'austin, texas'
'hotels in las vegas, nv'
…
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 …
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 …
7
votes
Can you programmatically detect pluralizations of English words, and derive the singular form?
It really depends on what you mean by 'programmatically'. Part of English works on easy to understand rules, and part doesn't. It has to do mainly with frequency. For a brief overview, you can rea …
