Conference Paper
Machine Learning
Featured

Natural Language Processing (almost) from Scratch

Ronan Collobert, Jason Weston(Google (United States)), Léon Bottou, Michael Karlen, Koray Kavukcuoglu(Supélec), Pavel P. Kuksa(Rutgers Sexual and Reproductive Health and Rights)
March 2, 2011Infoscience (Ecole Polytechnique Fédérale de Lausanne)7,932 citations

7.9k

Citations

654

Influential Citations

Infoscience (Ecole Polytechnique Fédérale de Lausanne)

Venue

2011

Year

Abstract

Editor: We propose a unified neural network architecture and learning algorithm that can be applied to various natural language processing tasks including: part-of-speech tagging, chunking, named entity recognition, and semantic role labeling, achieving or exceeding state-of-theart performance in each on four benchmark tasks. Our goal was to design a flexible architecture that can learn representations useful for the tasks, thus avoiding excessive taskspecific feature engineering (and therefore disregarding a lot of prior knowledge). Instead of exploiting man-made input features carefully optimized for each task, our system learns internal representations on the basis of vast amounts of mostly unlabelled training data. This work is then used as a basis for building a freely available tagging system with excellent performance while requiring minimal computational resources. Keywords:

Analysis

Why This Paper Matters

This paper is a landmark in natural language processing, demonstrating that a single neural network architecture can outperform carefully engineered feature-based systems across multiple core NLP tasks. At a time when most NLP systems relied on hand-crafted features and task-specific pipelines, Collobert et al. showed that learning representations from raw text—using vast amounts of unlabelled data—could achieve or exceed state-of-the-art results. This work directly challenged the prevailing wisdom that domain knowledge must be encoded into features, and instead advocated for data-driven representation learning.

The paper's emphasis on a unified architecture and minimal feature engineering was prescient, anticipating the shift toward end-to-end deep learning that would dominate NLP in the following decade. It also introduced the concept of using unlabelled data for pre-training, a technique that later became standard with word embeddings and transformer-based models.

Technical Contributions

  • Unified neural network architecture: A single convolutional network with a fixed structure is applied to four different NLP tasks (POS tagging, chunking, NER, SRL) without task-specific modifications.
  • Learning from unlabelled data: The network is pre-trained on large unlabelled corpora using a language modeling objective, learning word representations that capture syntactic and semantic information.
  • Avoidance of feature engineering: Instead of designing task-specific input features (e.g., capitalization, gazetteers), the model learns internal representations directly from raw text.
  • Efficient tagging system: The resulting system is computationally lightweight and freely available, making state-of-the-art NLP accessible to practitioners with limited resources.

Results

The proposed system achieved state-of-the-art or near-state-of-the-art performance on four benchmark tasks:

  • Part-of-speech tagging: 97.29% accuracy on the Penn Treebank (WSJ).
  • Chunking: 94.10% F1 on the CoNLL-2000 shared task.
  • Named entity recognition: 89.59% F1 on the CoNLL-2003 English dataset.
  • Semantic role labeling: 76.06% F1 on the CoNLL-2005 shared task.

These results were competitive with or better than systems that used extensive hand-crafted features, demonstrating the power of learned representations.

Significance

This paper was a foundational contribution to the deep learning revolution in NLP. It showed that neural networks could learn useful linguistic representations from raw text, reducing the need for manual feature engineering. The approach directly influenced subsequent work on word embeddings (e.g., word2vec, GloVe) and pre-trained language models (e.g., ELMo, BERT). By releasing a freely available tagging system, the authors also democratized access to high-performance NLP tools. The paper's core insight—that learning representations from data is more effective than hand-crafting features—remains a guiding principle in modern AI.