Recall & Review
beginner
What is Part-of-Speech (POS) tagging in natural language processing?
POS tagging is the process of labeling each word in a sentence with its grammatical role, such as noun, verb, adjective, etc. It helps computers understand sentence structure.
Click to reveal answer
beginner
Why is POS tagging important for language understanding?
POS tagging helps identify the function of words, which improves tasks like sentence parsing, machine translation, and information extraction by giving context to each word.
Click to reveal answer
intermediate
Name two common approaches to perform POS tagging.
1. Rule-based tagging: uses hand-written rules to assign tags.<br>2. Statistical tagging: uses machine learning models trained on labeled data to predict tags.
Click to reveal answer
intermediate
What is a common machine learning model used for POS tagging?
Hidden Markov Models (HMM) are commonly used because they consider the sequence of words and their tags to predict the most likely tag for each word.
Click to reveal answer
intermediate
How does POS tagging handle words with multiple possible tags?
POS taggers use context from surrounding words and learned probabilities to choose the most likely tag for ambiguous words.
Click to reveal answer
What does POS tagging assign to each word in a sentence?
✗ Incorrect
POS tagging assigns grammatical categories such as noun, verb, adjective to each word.
Which of these is NOT a typical POS tag?
✗ Incorrect
Color is not a grammatical category; noun, verb, and adjective are common POS tags.
Which model is often used for POS tagging because it considers word sequences?
✗ Incorrect
Hidden Markov Models consider sequences and are commonly used for POS tagging.
What helps a POS tagger decide the correct tag for a word with multiple meanings?
✗ Incorrect
Context from nearby words helps the tagger pick the right tag for ambiguous words.
Which approach uses hand-written rules to assign POS tags?
✗ Incorrect
Rule-based tagging relies on hand-written rules to assign tags.
Explain what Part-of-Speech tagging is and why it is useful in natural language processing.
Think about how labeling words helps computers understand language.
You got /3 concepts.
Describe two common methods used to perform POS tagging and how they differ.
One uses fixed rules, the other learns from examples.
You got /3 concepts.