Skip to content

POS Tagger

Go back to the Sentence Object.

POS Tagger Object

INDEXTYPEDESCRIPTION
0stringWord token
1stringSee list of possible tags

import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';

<Tabs> <TabItem value="py" label="Python">

[
    [
        "you",
        "CLS"
    ],
    [
        "have",
        "V"
    ],
    [
        "access",
        "N"
    ],
    [
        "to",
        "P"
    ],
    [
        "the",
        "D"
    ],
    [
        "best",
        "JJ"
    ],
    [
        "comprehension",
        "N"
    ],
    [
        "of",
        "P"
    ],
    [
        "language",
        "N"
    ]
]

</TabItem> <TabItem value="json" label="JSON">

[
	["you", "CLS"],
	["have", "V"],
	["access", "N"],
	["to", "P"],
	["the", "D"],
	["best", "JJ"],
	["comprehension", "N"],
	["of", "P"],
	["language", "N"]
]

</TabItem> </Tabs>

register-sticky