vigte
vigte

Reputation: 95

most effective way to parse with nltk

What the most effective way to parse with nltk? I have a big vocabulary and take me age to parse with RecursiveDescentParser. Thanks

Upvotes: 1

Views: 356

Answers (1)

Bjerva
Bjerva

Reputation: 223

From the NLTK Documentation (parsing):

The parser module defines ParserI, a standard interface for parsing texts; and two simple implementations of that interface, ShiftReduceParser and RecursiveDescentParser. It also contains three sub-modules for specialized kinds of parsing: nltk.parser.chart defines chart parsing, which uses dynamic programming to efficiently parse texts.

You could try the chart parsing sub-module. Hopefully it will be faster. :)

Hope this helps!

Upvotes: 1

Related Questions