Questions tagged [pos-tagging]

For questions related to part-of-speech tagging (POS tagging or PoS tagging or POST), which is the process of marking up a word in a text (corpus) as corresponding to a particular part of speech, based on both its definition and its context.

3 questions
2
votes
1 answer

Is it possible to create a named entity recognition system without using POS tagging in the corpus?

Is it possible to create a named entity recognition system without using POS tagging in the corpus?
1
vote
0 answers

When we translate a text from one language to another, how does the frequency of various POS tags change?

When we translate a text from one language to another, how does the frequency of various POS tags change? So, let's say we have a text in English, with 10% nouns, 20% adjectives, 15% adverbs, 25% verbs, etc., which we now translate to German,…
0
votes
0 answers

Finding Contextual Synonyms that are not necessarily Grammatical Synonyms

I'm trying to learn if there is a way to utilize ML to find out a list of contextual synonyms for a word in a sentence. I know of some obvious ones where you mask the word and have some model predict the word. Just wondering if there's any other…