Morphological features - tagset for English #11354
-
For a given language, I can get a set of possible tags by:
However, for some languages, e.g. for the English, there is no morphologizer components in the pipeline. Is there a different way to get these tags for English? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Which tags do you want exactly? You can get the fine-grained part of speech tags, which are based on the Penn Treebank, by checking the labels of the Some languages have features like whether a noun is plural or tense information, but English doesn't have features like that, though some of it is encoded in the fine-grained tags. |
Beta Was this translation helpful? Give feedback.
Which tags do you want exactly? You can get the fine-grained part of speech tags, which are based on the Penn Treebank, by checking the labels of the
tagger
component using your snippet above. You can also find those listed on the model page, under "label scheme" (it's collapsed by default).Some languages have features like whether a noun is plural or tense information, but English doesn't have features like that, though some of it is encoded in the fine-grained tags.