You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
493 B

  1. # BNN.pytorch
  2. Binarized Neural Network (BNN) for pytorch
  3. This is the pytorch version for the BNN code, fro VGG and resnet models
  4. Link to the paper: https://papers.nips.cc/paper/6573-binarized-neural-networks
  5. The code is based on https://github.com/eladhoffer/convNet.pytorch
  6. Please install torch and torchvision by following the instructions at: http://pytorch.org/
  7. To run resnet18 for cifar10 dataset use: python main_binary.py --model resnet_binary --save resnet18_binary --dataset cifar10