├── LICENSE ├── README.md ├── adapt.py ├── media └── pipeline.png ├── requirements.txt ├── src ├── configurator.py ├── datasets.py ├── layers.py ├── models.py ├── quantization.py ├── utils.py └── winogradUtils.py └── train.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/README.md -------------------------------------------------------------------------------- /adapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/adapt.py -------------------------------------------------------------------------------- /media/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/media/pipeline.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tqdm==4.40 2 | tensorboardx==1.9 3 | prettytable==0.7.2 4 | pillow==6.1 -------------------------------------------------------------------------------- /src/configurator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/configurator.py -------------------------------------------------------------------------------- /src/datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/datasets.py -------------------------------------------------------------------------------- /src/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/layers.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/models.py -------------------------------------------------------------------------------- /src/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/quantization.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/utils.py -------------------------------------------------------------------------------- /src/winogradUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/src/winogradUtils.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jafermarq/WinogradAwareNets/HEAD/train.py --------------------------------------------------------------------------------