[Python] Convert Glove model to a format Gensim can read
Last Updated on 2021-01-02 by Clay
Introduction
Those who are familiar with natural language processing (NLP) must be familiar with Glove and Python package Gensim.
Glove(Global Vectors for Word Representation)is a paper published by Stanford NLP Group, and it is also an open source pre-trained word embedding model. The Glove that you often see on the Internet now refers to this open source pre-trained model.
Gensim is a Python implementation of the Word2Vec paper proposed by Google in 2013, allowing us to easily train the word vector model using our own corpus via this package.
Read More »[Python] Convert Glove model to a format Gensim can read