├── models └── .gitkeep ├── normalize.py ├── plot-correlation.py ├── plot-reduction.py ├── plot-tsne.py ├── project-tsne.sh ├── readme.md ├── setup.sh ├── tokens-to-correlation.py ├── tokens-to-vectors.py └── words-to-vectors.py /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /normalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/normalize.py -------------------------------------------------------------------------------- /plot-correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/plot-correlation.py -------------------------------------------------------------------------------- /plot-reduction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/plot-reduction.py -------------------------------------------------------------------------------- /plot-tsne.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/plot-tsne.py -------------------------------------------------------------------------------- /project-tsne.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/project-tsne.sh -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/readme.md -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/setup.sh -------------------------------------------------------------------------------- /tokens-to-correlation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/tokens-to-correlation.py -------------------------------------------------------------------------------- /tokens-to-vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/tokens-to-vectors.py -------------------------------------------------------------------------------- /words-to-vectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kylemcdonald/EmbeddingScripts/HEAD/words-to-vectors.py --------------------------------------------------------------------------------