gitextract_rmfv6y78/ ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── examples/ │ └── mnist/ │ └── mnist.py ├── ptdec/ │ ├── __init__.py │ ├── cluster.py │ ├── dec.py │ ├── model.py │ └── utils.py ├── requirements.txt ├── setup.cfg ├── setup.py └── tests/ ├── __init__.py ├── test_cluster.py ├── test_dec.py ├── test_model.py └── test_utils.py