POS Flashcards
What does POS stand for?
Parts of Speech
How did POS originate?
It originated around 100BC when Dionysius Thrax of Alexandria was attempting to summarise Greek linguistic knowledge
What can POS also be called?
Word classes, morphological classes, lexical tags
What are POS generally assigned to?
Individual words or morphemes
What is labelling POS known as?
POS Tagging
What are proper names?
A proper name is called a Named Entity, and can be a multi-word phrase. Labelling named entities is called Named Entity Recognition (NER)
Why are POS and NEs useful?
POS gives us clues to neighbouring words and syntactic structure. POS tagging is a key aspect of parsing natural language. NER is important to many natural language tasks such as question answering, stance detection and information extraction
What type of task is POS?
It is a sequence labelling task
What is the input, output and their lengths for POS labelling?
The input X is a sequence of words, the output Y is a sequence of POS tags and the length of X and Y are equal
What is a closed class?
These are classes that have fixed membership. These are typically function words used for structuring grammar (of, it, and, you)
What is an open class?
These have open membership. These are typically nouns, verbs, adjective, adverb, interjections. Language changes over time, new vocabulary emerges and words may take new meanings
What is a list of POS labels called?
It is called a tagset
What are some popular tagsets?
Penn Treebank
Brown Corpus
C7 Tagset
What is POS tagging?
It is the process of assigning a POS tag to each word in a text
Why is POS Tagging a disambiguation task?
Words are ambiguous and can have more than different POS, so we need to find the correct tag for the given situation