CYK Grammar Rules (Cocke-Younger-Kasami)

I am interested in natural language analysis and wrote the Brill Part of Speech Tagger and would like to improve it by combining it with a grammar-based POS tag. Does anyone know open source files for English anywhere? I'm especially interested in everything related to the CYK (Cocke-Younger-Kasami) algorithm, especially C #. Thank you

+3
source share
1 answer

Did you tag GATE ?

They seem to have a Brill-based POS tagger with vocabulary and rules . It is implemented in Java, so you should probably understand the code easily. It is available in the same project at Sourceforge. Here is their POS tag documentation .

Hope this helps.

Disconnect topic, lectures from Michael Collins on tagging and POS theory behind it.

0
source

All Articles