├── .gitmodules ├── CHANGELOG.md ├── CODINGSTYLE.md ├── CONTRIBUTING.md ├── COPYING ├── README.md └── main.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/.gitmodules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 0.0.1 (2018-03-19) 4 | 5 | * Initial version 6 | -------------------------------------------------------------------------------- /CODINGSTYLE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/CODINGSTYLE.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stefan-it/capsnet-nlp/HEAD/main.py --------------------------------------------------------------------------------