RiTa
index
Name chunk()
Class RiChunker
Description Use supplied part-of-speech tags to do chunking, then returning chunk data inline, in following format (for input 'The boy ran over dog'):

(np The/dt boy/nn) (vp ran/vbd) (pp over/in) (np the/dt dog/nn)

Syntax
chunk(listOfTokens, listOfTags);
chunk(arrayOfTokens, arrayOfTags);
Returns java.lang.String
Usage Web & Application
Related