Generating Document Embeddings
Learn to generate document embeddings from word embeddings.
We'll cover the following...
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
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 ...