質問

I have a text corpus that contains sentences represented as trees with their Part of Speech tags. I want to build a system that can probably learn a probabilistic grammar from this tree structure. Are there any inbuilt python modules than can tackle this or do I have to have to build a parser?

役に立ちましたか?

解決

Couldnt find one. Had to implement my own parser using stacks. Honestly wasnt too much of a pain.

他のヒント

You have to create a grammer for parsing your text. http://nltk.googlecode.com/svn/trunk/doc/book/ch08.html#fig-depgraph0

then parse your text using nltk parser with this grammer.

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top