gensim. These embeddings can be directly loaded and used for downstream NLP tasks such as classification, clustering, and semantic similarity.| Filename | Description |
|---|---|
glove.6B.50d.txt | 50-dimensional GloVe vectors |
glove.6B.100d.txt | 100-dimensional GloVe vectors |
glove.6B.100d.word2vec.txt | Converted version of 100d in Word2Vec format |
glove.6B.200d.txt | 200-dimensional GloVe vectors |
glove.6B.300d.txt | 300-dimensional GloVe vectors |
glove_word2vec_model.pkl | Gensim KeyedVectors object for 100d model (pickled) |
.txt files with Gensim1from gensim.models import KeyedVectors
2
3# Load Word2Vec format (text)
4model = KeyedVectors.load_word2vec_format("glove.6B.100d.word2vec.txt", binary=False)1from gensim.models import KeyedVectors
2
3model = KeyedVectors.load("glove_word2vec_model.pkl")