Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've heard that Perl is used a lot for NLP, but I can't find almost any good NLP tools for Perl. What are some good Perl NLP tools/resources? Python has NLTK. Java has OpenNLP. Does Perl have anything similar?

This is really a general question, but if someone could also specifically address chunking and POS-tagging, that would be awesome!

share|improve this question

3 Answers

up vote 6 down vote accepted

There is a Natural Language Processing page on the perl5 wiki.

/I3az/

share|improve this answer

There are a lot of good NLP-related Perl modules, so you can pick a good set of tools for your task.

However, I think there's not a toolkit such as NLTK or OpenNLP in Perl. Let's see if someone else proves me wrong ;)

Just an example or an interesting Perl module for NLP: Wordnet::Similarity.

With respect POS tagging, there is Lingua::EN::Tagger, but I have no idea if it is any good.

share|improve this answer

Besides the ones smmv mentioned, there's also Lingua-BrillTagger. No idea how useful it is here either :)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.