Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 1.78 KB

README.md

File metadata and controls

23 lines (14 loc) · 1.78 KB

pytorch-glove

Overview

This is an implementation of GloVe (Global Vectors for Word Representation), a model combine the glov matrix factorizaton methods and local context window method for learning word vectors. The model was originally developed with C by Jeffery Pennington, Richard Socher, and Christopher Manning.

This is pytorch version of GloVe. "PyTorch is a deep learning framework for fast, flexible experimentation."

Credit

Thanks for Jeffery Pennington, Richard Socher, and Christopher Manning, who developed the model, published a paper about it, and released an C implementation version of the model.

I also appreciate Stanford NLP team upload course CS224n (Natural Language Processing) resource online. This is really a exciting experience for a Chinese student like me to have chance to study online courses offered by Standford.

Thanks also to GradySimon, who wrote a Tensorflow implementation of the model and hans post a blog describing the implementation detail.

References