Search for phrases in Java

I am trying to find collocations (PDF) in Java.

I know NLTK has a module collocations, but does not want to use Jython.

I looked at OpenNLP and GATE, but they didn't seem to have a collocation search.

Does anyone know what a free open source collocation search tool in Java is?

+4
source share
3 answers

For me, the best ready-to-use xTract collating algorithm in DragonToolkit uses basic statistics collocation features such as lingpipe and more complex ones like POS marking

+2
source

Through Ingersoll Grant Review of New Features in Mahout I discovered that Apache Mahout now has collocations . It is open source in Java, but it requires a Hadoop framework.

+1
source

All Articles