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?
I have a text corpus that contains sentences represented as trees with their Part
Share
Couldnt find one. Had to implement my own parser using stacks. Honestly wasnt too much of a pain.