I am new to nltk and finding it hard to deal with nltk tree. Given an nltk parsed tree from Penn treebank, I want to be able to count the span of each node recursively from bottom to up. Span of leaf nodes is 1. And the span of non terminal nodes is the sum of the span of its children. Could someone please show me how to do this?
Thank you.
If
t
is any tree or subtree in annltk.Tree
, its number of leaves is given bylen(t.leaves())
.