POS Tagger
Go back to the Sentence Object.
POS Tagger Object
INDEX | TYPE | DESCRIPTION |
---|---|---|
0 | string | Word token |
1 | string | See list of possible tags |
- Python
- JSON
[
[
"you",
"CLS"
],
[
"have",
"V"
],
[
"access",
"N"
],
[
"to",
"P"
],
[
"the",
"D"
],
[
"best",
"JJ"
],
[
"comprehension",
"N"
],
[
"of",
"P"
],
[
"language",
"N"
]
]
[
["you", "CLS"],
["have", "V"],
["access", "N"],
["to", "P"],
["the", "D"],
["best", "JJ"],
["comprehension", "N"],
["of", "P"],
["language", "N"]
]