├── .gitignore ├── GloVe-as-TensorFlow-Embedding-Tutorial.ipynb ├── LICENSE ├── README.md ├── embeddings └── .gitignore └── images ├── L2_norm.png ├── cosine_similarity.png └── word_analogy.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/.gitignore -------------------------------------------------------------------------------- /GloVe-as-TensorFlow-Embedding-Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/GloVe-as-TensorFlow-Embedding-Tutorial.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/README.md -------------------------------------------------------------------------------- /embeddings/.gitignore: -------------------------------------------------------------------------------- 1 | *.zip 2 | glove.twitter.27B* 3 | checkpoint 4 | 5 | -------------------------------------------------------------------------------- /images/L2_norm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/images/L2_norm.png -------------------------------------------------------------------------------- /images/cosine_similarity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/images/cosine_similarity.png -------------------------------------------------------------------------------- /images/word_analogy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guillaume-chevalier/GloVe-as-a-TensorFlow-Embedding-Layer/HEAD/images/word_analogy.png --------------------------------------------------------------------------------