├── .gitignore ├── .python-version ├── README.md ├── models ├── __init__.py ├── vgg_low.py ├── wage_initializer.py └── wage_quantizer.py ├── requirements.txt ├── train.py ├── utils.py └── wage.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.6.1 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/README.md -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/vgg_low.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/models/vgg_low.py -------------------------------------------------------------------------------- /models/wage_initializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/models/wage_initializer.py -------------------------------------------------------------------------------- /models/wage_quantizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/models/wage_quantizer.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tabulate 2 | tensorboardX 3 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/utils.py -------------------------------------------------------------------------------- /wage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevenygd/WAGE.pytorch/HEAD/wage.sh --------------------------------------------------------------------------------