├── .gitignore ├── Binarized Rnns ├── brnn1.py ├── functions.py ├── mod.py └── rnncells.py ├── Cifar10 ├── Accuracy with epoch.png ├── functions.py ├── loss with epoch.png ├── main.py └── modules.py ├── MNIST using Binarized weights ├── Accuracy per epoch.png ├── Train+test time per epoch.png ├── functions.py ├── mnistbw.py └── modules.py ├── README.md ├── Simple Mnist without Binarised Weights ├── accuracy with epoch.png ├── akl ├── mnistsimple.py └── train+test time with epoch.png ├── brnn1.py ├── mod.py └── rnncells.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/.gitignore -------------------------------------------------------------------------------- /Binarized Rnns/brnn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Binarized Rnns/brnn1.py -------------------------------------------------------------------------------- /Binarized Rnns/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Binarized Rnns/functions.py -------------------------------------------------------------------------------- /Binarized Rnns/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Binarized Rnns/mod.py -------------------------------------------------------------------------------- /Binarized Rnns/rnncells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Binarized Rnns/rnncells.py -------------------------------------------------------------------------------- /Cifar10/Accuracy with epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Cifar10/Accuracy with epoch.png -------------------------------------------------------------------------------- /Cifar10/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Cifar10/functions.py -------------------------------------------------------------------------------- /Cifar10/loss with epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Cifar10/loss with epoch.png -------------------------------------------------------------------------------- /Cifar10/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Cifar10/main.py -------------------------------------------------------------------------------- /Cifar10/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Cifar10/modules.py -------------------------------------------------------------------------------- /MNIST using Binarized weights/Accuracy per epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/MNIST using Binarized weights/Accuracy per epoch.png -------------------------------------------------------------------------------- /MNIST using Binarized weights/Train+test time per epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/MNIST using Binarized weights/Train+test time per epoch.png -------------------------------------------------------------------------------- /MNIST using Binarized weights/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/MNIST using Binarized weights/functions.py -------------------------------------------------------------------------------- /MNIST using Binarized weights/mnistbw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/MNIST using Binarized weights/mnistbw.py -------------------------------------------------------------------------------- /MNIST using Binarized weights/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/MNIST using Binarized weights/modules.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/README.md -------------------------------------------------------------------------------- /Simple Mnist without Binarised Weights/accuracy with epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Simple Mnist without Binarised Weights/accuracy with epoch.png -------------------------------------------------------------------------------- /Simple Mnist without Binarised Weights/akl: -------------------------------------------------------------------------------- 1 | a 2 | -------------------------------------------------------------------------------- /Simple Mnist without Binarised Weights/mnistsimple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Simple Mnist without Binarised Weights/mnistsimple.py -------------------------------------------------------------------------------- /Simple Mnist without Binarised Weights/train+test time with epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/Simple Mnist without Binarised Weights/train+test time with epoch.png -------------------------------------------------------------------------------- /brnn1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/brnn1.py -------------------------------------------------------------------------------- /mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/mod.py -------------------------------------------------------------------------------- /rnncells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Akashmathwani/Binarized-Neural-networks-using-pytorch/HEAD/rnncells.py --------------------------------------------------------------------------------