Song Yang
Song Yang

Reputation: 485

Spacy: How to turn a verb into a noun?

How can I use Spacy to turn verbs into nouns? For example, the sentence

The shop is owned by the company.

has the verb owned in passive voice. I want to turn it into owner using Spacy.

Upvotes: 2

Views: 529

Answers (1)

polm23
polm23

Reputation: 15593

spaCy has no feature to do this. NLG, or modifying the input text to make new text, is considered out of scope for spaCy.

Even if you used an NLG library I'm not sure there's any standard way to do the kind of transformation you want.

Also there's nothing wrong with passive voice.

Upvotes: 1

Related Questions