English

Overview

Word2Vec introduced efficient methods for learning distributed representations of words from large text corpora. The resulting word vectors capture semantic and syntactic relationships, enabling famous analogies like “king - man + woman = queen”.

Key Contributions

  1. Skip-gram Model: Predicts context words given a target word
  2. CBOW (Continuous Bag of Words): Predicts target word from context
  3. Efficiency: Can train on billions of words in hours
  4. Semantic Relationships: Vectors capture meaningful word relationships

Architecture

Two main architectures:

  • Skip-gram: Given word w, predict surrounding words
  • CBOW: Given surrounding words, predict center word w

Both use shallow neural networks with a single hidden layer.

Impact

Word2Vec revolutionized NLP:

  • Foundation for all modern word embeddings
  • Inspired GloVe, FastText, and eventually contextual embeddings
  • Demonstrated that simple models at scale can capture complex semantics

arXiv

.3781

中文

概述

Word2Vec引入了从大规模文本语料库学习词的分布式表示的高效方法。生成的词向量捕捉语义和句法关系,实现了著名的类比如”国王 - 男人 + 女人 = 女王”。

主要贡献

  1. Skip-gram模型:给定目标词预测上下文词
  2. CBOW(连续词袋):从上下文预测目标词
  3. 高效性:可在数小时内训练数十亿词
  4. 语义关系:向量捕捉有意义的词关系

架构

两种主要架构:

  • Skip-gram:给定词w,预测周围的词
  • CBOW:给定周围的词,预测中心词w

两者都使用只有一个隐藏层的浅层神经网络。

影响

Word2Vec彻底改变了NLP:

  • 所有现代词嵌入的基础
  • 启发了GloVe、FastText,最终发展到上下文嵌入
  • 证明了大规模简单模型可以捕捉复杂语义

论文链接

arXiv

.3781