How do I distinguish between function/structure words and content/lexical words?
I am already using StanfordCoreNLP, so I would like to leverage it, if possible.
More specifically, which annotator should I use and how would it mark content/lexical words?
I tried pos
but it does not distinguish between function and content words.
PS. I use the lemma
annotator to get the words which I want to ignore.
PPS. I use pyconlp
.