AIAny
Icon for item

Sequence to Sequence Learning with Neural Networks

End-to-end encoder–decoder using deep LSTMs to map variable-length input sequences to output sequences; demonstrated competitive English→French translation (BLEU 34.8) and improved optimization by reversing source sentences, showing strong handling of long sentences.

Introduction

Most pre-2014 sequence systems relied on hand-engineered pipelines or phrase-based SMT; this paper showed a surprisingly simple end-to-end recipe could close the gap. The core insight: stack deep LSTM encoders and decoders and train them directly on sequence pairs — with a small training trick (reverse source word order) the model learns shorter-term dependencies that make optimization easier.

Key Findings
  • Competitive translation without explicit alignment: a deep LSTM encoder produces a fixed-size vector that a deep LSTM decoder turns into a target sentence; on WMT'14 English→French the model reached BLEU 34.8 (and 36.5 after reranking SMT hypotheses), comparable to phrase-based SMT at the time.
  • Robustness to long sentences: the model handled long sentence inputs better than expected, indicating the learned vector representations captured long-range structure.
  • Simple optimization trick matters: reversing source sentence word order substantially improved training convergence and final quality by creating shorter-term dependencies between corresponding source/target words.
  • Representations capture syntax-sensitive roles: the authors observed learned phrase and sentence vectors were sensitive to word order and relatively invariant to active/passive voice.
Who It's For and Trade-offs

Great fit if you want a clear, historically important baseline for sequence modeling, or a compact encoder–decoder architecture to prototype translation, summarization, or other seq→seq tasks. Look elsewhere if you need: scalable attention-based alignment (this paper predates attention), efficient handling of very large vocabularies/OOVs out of the box, or state-of-the-art throughput on modern NLP benchmarks — later models (attention, transformers) improved quality and efficiency.

Where It Fits

This work is a foundational milestone: it motivated follow-ups (attention mechanisms, global/local alignment, and ultimately transformer architectures) by demonstrating that simple learned sequence encoders and decoders can match classical systems. Use it for research comparisons, teaching, or understanding the evolution from RNN-based seq2seq to attention-first models.

How It Works (brief)
  • Architecture: two separate deep LSTMs (encoder → fixed-size vector → decoder). No explicit attention mechanism.
  • Training/data: trained end-to-end on parallel corpora; evaluation used WMT'14 English→French and reranking experiments with SMT n-best lists.
  • Practical note: the source-reversal trick is an inexpensive preprocessing step that improved gradient flow during training and yielded measurable BLEU gains.

Information

  • Websitearxiv.org
  • AuthorsIlya Sutskever, Oriol Vinyals, Quoc V. Le
  • Published date2014/09/10

More Items

Analyzes on-policy distillation for LLM fine-tuning, shows teacher token-level supervision is often noisy and not the main driver of gains, and introduces OPSA, a supervision-free, entropy-adaptive method that suppresses low-probability tokens to improve downstream accuracy.

Analyzes how to generate useful interaction data for LLM agents and proposes the ACE lens — Accuracy, Complexity, divErsity — while factorizing agentic data as (E, q, τ, v). Surveys verification, difficulty calibration, and coverage strategies and outlines implications for training and benchmarks.

Generates unified embeddings for text, images, video, visual documents and interleaved multimodal inputs with configurable output dimensions and Matryoshka truncation to trade accuracy for cost. Model weights and code are released under Apache-2.0; the 9B variant scores 80.6 on MMEB-v2.