The `delemmatize` flag is convenient, but, for example: ```python dl = Delemmatizer() dl('calculation') # ['calculation', 'calculations'] ``` it would be nice to find **all** derivationally related "words" (including multi-word verb phrases), something like: ```python dl = Delemmatizer(explode=True) dl('calculation') # ['calculation', 'calculations', 'calculate', 'calculates', 'calculated', 'would calculate', 'would have calculated' 'has calculated'... 'calculators', 'calculator'] ```
The
delemmatizeflag is convenient, but, for example:it would be nice to find all derivationally related "words" (including multi-word verb phrases), something like: