├── .gitignore ├── LICENSE ├── README.md ├── download_preprocessed.sh ├── models.py └── run.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/README.md -------------------------------------------------------------------------------- /download_preprocessed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/download_preprocessed.sh -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/models.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bentrevett/code2vec/HEAD/run.py --------------------------------------------------------------------------------