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

Find all related words #1

Open
sam-writer opened this issue Jun 27, 2019 · 0 comments
Open

Find all related words #1

sam-writer opened this issue Jun 27, 2019 · 0 comments
Labels
good first issue Good for newcomers

Comments

@sam-writer
Copy link
Contributor

sam-writer commented Jun 27, 2019

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']
@sam-writer sam-writer self-assigned this Jun 27, 2019
@sam-writer sam-writer removed their assignment Jul 12, 2019
@sam-writer sam-writer added the good first issue Good for newcomers label Jul 12, 2019
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
good first issue Good for newcomers
Projects
None yet
Development

No branches or pull requests

1 participant