I want to load pre-trained word embeddings from google news
model = gensim.models.KeyedVectors.load_word2vec_format('GoogleNews-vectors-negative300.bin', binary=True)
print (model.wv.vocab)
But the error is showing:
UnicodeEncodeError: 'ascii' codec can't encode character '\u2022' in position 62425: ordinal not in range(128)
How do I fix this? as I want to list all the words in the word embeddings and do the average for the sentence embedding.