...

/

Generating Document Embeddings

Generating Document Embeddings

Learn to generate document embeddings from word embeddings.

Let’s first remind ourselves how we stored embeddings for the skip-gram, CBOW, and GloVe algorithms. The figure below depicts how these look in a pd.DataFrame object.

Press + to interact
A snapshot of the context embeddings of the skip-gram algorithm we saved to the disk
A snapshot of the context embeddings of the skip-gram algorithm we saved to the disk

We can see that the bottom left corner in the image above says that it has 128 columns (i.e., the embedding size).

ELMo embeddings

ELMo embeddings are an exception to this. Since ELMo generates contextualized representations ...