├── .gitignore ├── LICENSE ├── README.md ├── capsnet.py ├── requirements.txt └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/README.md -------------------------------------------------------------------------------- /capsnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/capsnet.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/requirements.txt -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arogozhnikov/readable_capsnet/HEAD/train.py --------------------------------------------------------------------------------