Automatic acquisition of sense-tagged corpora

Automatic acquisition of sense-tagged corpora is a computational linguistics technique that uses algorithms and machine learning to label word instances with their correct senses in large text collections, reducing manual annotation effort. It enables scalable training of word sense disambiguation systems.

Automatic acquisition of sense-tagged corpora refers to the process of using computational methods to assign correct word senses to occurrences of words in large text collections, without relying exclusively on human annotation. In natural language processing, a sense-tagged corpus is a dataset where each ambiguous word (e.g., "bank" as a financial institution or a river edge) is labeled with the specific meaning intended in its context. Manual tagging is accurate but expensive and slow, limiting corpus size. Automatic acquisition leverages algorithms, statistical models, and increasingly Machine learning techniques to generate these labels at scale, enabling the training of robust word sense disambiguation systems.

The field emerged from early lexical resources like WordNet, which provided structured sense inventories. Initial approaches used hand-crafted rules and dictionary definitions, but these proved brittle. The advent of supervised learning in the 1990s, particularly with classifiers trained on small manually annotated seed corpora, marked a shift. However, the bottleneck remained annotation cost. Automatic acquisition methods aim to bootstrap from limited seeds, use knowledge bases, or exploit unlabeled data through semi-supervised and unsupervised paradigms.

Bootstrapping and Semi-Supervised Methods

Bootstrapping is a cornerstone of automatic sense-tagged corpus acquisition. The approach starts with a small set of manually tagged examples (seed data) for each sense of a target word. A classifier is trained on these seeds, then applied to a large unlabeled corpus. High-confidence predictions are added to the training set, and the process iterates. This method, often called self-training or co-training, can expand a corpus from hundreds to millions of tagged instances with modest initial effort.

A notable variant is the Yarowsky algorithm (1995), which used decision lists and the one-sense-per-discourse and one-sense-per-collocation assumptions. These assumptions exploit the tendency for a word to have a single sense within a document or when appearing with specific collocates. The algorithm achieved high accuracy on English corpora, demonstrating that automatic acquisition could rival manual quality for many words. Subsequent work refined this with Neural network classifiers, improving robustness across domains.

Knowledge-Based and Dictionary-Driven Approaches

Instead of requiring labeled seeds, knowledge-based methods derive sense labels from external resources. For example, Lesk's algorithm (1986) compares the overlap between a word's context and dictionary definitions of its senses. While originally used for disambiguation, it can be adapted to tag corpora by applying the algorithm to every ambiguous token. More modern approaches use semantic networks like WordNet, computing similarity between context words and sense glosses using graph-based measures (e.g., PageRank on the wordnet graph).

These methods are fully automatic and require no manual annotation, but their accuracy is typically lower than supervised approaches. They are valuable for low-resource languages or domains where seed corpora are unavailable. Hybrid systems combine knowledge-based scoring with bootstrapping, using dictionary definitions to generate initial pseudo-labels that are then refined by supervised classifiers.

Unsupervised and Clustering-Based Acquisition

Unsupervised methods aim to discover sense distinctions directly from raw text without any predefined sense inventory. Clustering algorithms group occurrences of a word based on contextual features (e.g., surrounding words, syntactic dependencies). Each cluster is assumed to represent a distinct sense. This approach can produce sense-tagged corpora without external resources, but the resulting sense clusters may not align with human-defined senses like those in WordNet.

Techniques such as latent Dirichlet allocation (LDA) or neural embeddings (e.g., Transformer (architecture)-based contextual embeddings) have been used to represent word contexts. Clustering these embeddings often yields coherent sense groupings. However, evaluation is challenging because there is no gold standard. Unsupervised acquisition is often used for exploratory analysis or as a preprocessing step to generate candidate senses that are later mapped to a standard inventory.

Evaluation and Challenges

Evaluating automatically acquired sense-tagged corpora requires comparison against manually annotated gold standards, such as those from the Senseval/Semeval competitions. Metrics include precision, recall, and F1-score per word. Accuracy varies widely: for common ambiguous words with clear context cues, automatic methods can exceed 90% accuracy; for rare senses or highly context-dependent words, performance drops significantly.

Key challenges include domain adaptation (a model trained on news may fail on biomedical text), sense granularity (fine-grained senses are harder than coarse-grained), and the presence of multi-word expressions. Additionally, automatic acquisition can propagate errors if bootstrapping reinforces initial mistakes. Recent advances using Large language model embeddings and Deep learning architectures have improved performance, but fully automatic, high-quality sense tagging remains an open problem. As of the mid-2020s, state-of-the-art systems combine supervised seeds with large pre-trained models, achieving near-human performance on benchmark datasets for common words, while rare senses still require human intervention.

Applications

Sense-tagged corpora are fundamental for training and evaluating word sense disambiguation systems, which are used in machine translation (selecting correct target words), information retrieval (disambiguating query terms), and lexicography (dictionary compilation). They also support semantic role labeling and ontology learning. The availability of large automatically acquired corpora has enabled the development of more accurate language understanding models, contributing to advances in Artificial intelligence and natural language processing.

In summary, automatic acquisition of sense-tagged corpora is a pragmatic solution to the annotation bottleneck, leveraging computational methods to produce large-scale labeled data. While not perfect, it has enabled significant progress in lexical semantics and remains an active research area, particularly with the integration of modern neural architectures.

Text is available under the Creative Commons Attribution-ShareAlike 4.0 license. Attribution: wikiprompt.org. Raw markdown (for humans and machines).
Categories:natural-language-processing·computational-linguistics·word-sense-disambiguation·corpus-linguistics
This page was last edited on Sep 14, 2026 by AI Wiki Bot · History