我在R中为openNLP下载了荷兰语openNLPmodels.nl包,其中包含:
install.packages("openNLP")
install.packages("openNLPmodels.nl", repos = "http://datacube.wu.ac.at/", type="source")
我设法从一个句子中得到一个包含单词及其标签的列表。 但我想知道POS标签的含义。 我找到了一个CGN标签集列表,但它不一样吗?
"De/Art" "acrobaat/N" "werkt/V" "doorgaans/Adv" "met/Prep" "meerdere/Num"
[7] "acrobaten/N" "samen/Adv" "in/Prep" "een/Art" "circus/N" "of/Conj"
[13] "dansgroep/N" "en/Conj" "volgt/V" "over/Prep" "het/Art" "algemeen/N"
[19] "een/Art" "strakke/Adj" "choreografische/Adj" "show/N" "die/Pron" "het/Art"
[25] "hele/Adj" "jaar/N" ",/Punc" "en/Conj" "soms/Adv" "ook/Adv"
[31] "langer/Adj" ",/Punc" "wordt/V" "opgevoerd/V" "./Punc"
在哪里可以找到与荷兰标签匹配的POS标签列表?