├── .gitignore ├── README.md ├── Word Embeddings.ipynb ├── green_eggs_and_ham.xlsx ├── images ├── word2vec_analogies.png └── word2vec_sexist.png ├── requirements.txt └── temp-plot.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/README.md -------------------------------------------------------------------------------- /Word Embeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/Word Embeddings.ipynb -------------------------------------------------------------------------------- /green_eggs_and_ham.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/green_eggs_and_ham.xlsx -------------------------------------------------------------------------------- /images/word2vec_analogies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/images/word2vec_analogies.png -------------------------------------------------------------------------------- /images/word2vec_sexist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/images/word2vec_sexist.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/requirements.txt -------------------------------------------------------------------------------- /temp-plot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastai/word-embeddings-workshop/HEAD/temp-plot.html --------------------------------------------------------------------------------