CBoW Word2Vec
Continuous Bag-of-Words Word2Vec
2000년 도입 · 논문 6편에서 사용
Continuous Bag-of-Words Word2Vec is an architecture for creating word embeddings that uses $n$ future words as well as $n$ past words to create a word embedding. The objective function for CBOW is: $$ J\_\theta = \frac{1}{T}\sum^{T}\_{t=1}\log{p}\left(w\_{t}\mid{w}\_{t-n},\ldots,w\_{t-1}, w\_{t+1},\ldots,w\_{t+n}\right) $$ In the CBOW model, the distributed representations of context are used to predict the word in the middle of the window. This contrasts with Skip-gram Word2Vec where the distributed representation of the input word is used to predict the context.
출처: Efficient Estimation of Word Representations in Vector Space
소개 논문: Efficient Estimation of Word Representations in Vector Space
Static Word Embeddings · Natural Language ProcessingWord Embeddings · Natural Language Processing