├── .gitignore ├── LICENSE ├── README.md ├── elmo_vis.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | *.png 2 | .DS_Store 3 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengluchang/visualizing_contextual_vectors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengluchang/visualizing_contextual_vectors/HEAD/README.md -------------------------------------------------------------------------------- /elmo_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hengluchang/visualizing_contextual_vectors/HEAD/elmo_vis.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | allennlp==0.8.3 2 | sklearn 3 | matplotlib 4 | numpy 5 | --------------------------------------------------------------------------------