POS Tagging Flashcards

1
Q

What are backoff and smoothing?

A

Smoothing attempts to distribute probability mass for unseen events. The most primtive way of achieving this is add one smoothing, which simply adds one to all counts.

Another approach is to backoff to unigram probabilities, i.e to distribute unseen probability mass proportional to the unigram probabilities.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How is POS tagging typically evaluated?

A

POS tagging algorithms are evaluated in terms of the percentage of correct tags. The standard assumption is that every word should be tagged with exactly one tag, which is either deemed to be correct or incorrect. But there are some words which can only be tagged in one way (e.g punctuation). High success rates are therefore misleading.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the baseline for POS Tagging?

A

A baseline is simply to assign the most probable tag on the basis of the training data. The ceiling is set by the performance of human annotators.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly