Skip to content
Discussion options

You must be logged in to vote

This warning means that you have a lemmatizer that won't work in your pipeline, so you either want to re-enable the components that provide pos or you want to remove the lemmatizer. The lemmatizer will still run, but it won't provide useful lemmas (just lowercased token texts).

In the en pipelines, you need to enable both the tagger and the attribute_ruler components to provide pos for the lemmatizer. In v2 the lemmas used to be assigned by the tagger, so this kind of inter-dependency between the pipeline components in v3 is new and potentially confusing, so we added a warning when we know the lemmatizer isn't going to work.

Or did you run into this error with the default en_core_web_sm p…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@tc64
Comment options

Answer selected by adrianeboyd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat / lemmatizer Feature: Rule-based and lookup lemmatization
2 participants