Skip to content
This repository was archived by the owner on Mar 1, 2022. It is now read-only.
This repository was archived by the owner on Mar 1, 2022. It is now read-only.

Find all related words #1

@sam-writer

Description

@sam-writer

The delemmatize flag is convenient, but, for example:

dl = Delemmatizer()
dl('calculation')
# ['calculation', 'calculations']

it would be nice to find all derivationally related "words" (including multi-word verb phrases), something like:

dl = Delemmatizer(explode=True)
dl('calculation')
# ['calculation', 'calculations', 'calculate', 'calculates', 'calculated', 'would calculate', 'would have calculated' 'has calculated'... 'calculators', 'calculator']

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions