AI Term:Word Sense Disambiguation

·

·

« Back to Glossary Index

Word Sense Disambiguation” (WSD) is a task in natural language processing that involves determining the correct sense or meaning of a word in context. This is important because many words in most languages have multiple meanings, and the correct interpretation of these words can only be determined based on the context in which they are used.

For example, consider the word “bank”. It can mean the financial institution where you deposit money, or it can mean the land along the side of a river. If you see the sentence “I deposited money in the bank”, you can easily tell that “bank” here refers to the financial institution. However, in the sentence “I sat by the bank and watched the river flow”, the word “bank” refers to the land along the side of a river. Determining the correct sense of the word “bank” in these sentences is an example of Word Sense Disambiguation.

Several techniques are used for WSD. These can be broadly classified into:

  1. Knowledge-based methods: These methods use lexical resources, like WordNet, which is a large lexical database of English where words are grouped into sets of synonyms (each expressing a distinct concept).
  2. Supervised learning methods: These methods require a labeled dataset where the correct senses of words are already annotated. Algorithms like Naive Bayes, Decision Trees, or Neural Networks can be used to predict the correct sense based on these examples.
  3. Semi-supervised and unsupervised methods: These methods do not require annotated data, and instead use clustering algorithms to group similar contexts together, assuming that each group corresponds to a different sense.

The choice of method depends on the availability of resources (like labeled data) and the specific requirements of the task. WSD is a fundamental NLP problem and is crucial for many NLP applications such as machine translation, information retrieval, and text summarization, among others.

« Back to Glossary Index