├── CIFAR-10 ├── ResNet18 │ ├── binaryfunction.py │ ├── ir_1w1a.py │ └── resnet.py ├── ResNet20 │ ├── 1w1a │ │ ├── modules │ │ │ ├── binaryfunction.py │ │ │ └── ir_1w1a.py │ │ ├── resnet.py │ │ └── trainer.py │ └── 1w32a │ │ ├── modules │ │ ├── binaryfunction.py │ │ └── ir_1w32a.py │ │ ├── resnet.py │ │ └── trainer.py └── VGG-Small │ ├── main.py │ ├── modules │ ├── binaryfunction.py │ └── ir_1w1a.py │ └── vgg.py ├── ImageNet ├── ResNet18 │ ├── 1w1a │ │ ├── config.yaml │ │ └── models │ │ │ ├── modules │ │ │ ├── binaryfunction.py │ │ │ └── ir_1w1a.py │ │ │ └── resnet.py │ └── 1w32a │ │ ├── config.yaml │ │ └── models │ │ ├── modules │ │ ├── binaryfunction.py │ │ └── ir_1w32a.py │ │ └── resnet.py └── ResNet34 │ ├── 1w1a │ ├── config.yaml │ └── models │ │ ├── modules │ │ ├── binaryfunction.py │ │ └── ir_1w1a.py │ │ └── resnet.py │ └── 1w32a │ ├── config.yaml │ └── models │ ├── modules │ ├── binaryfunction.py │ └── ir_1w32a.py │ └── resnet.py └── README.md /CIFAR-10/ResNet18/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet18/binaryfunction.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet18/ir_1w1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet18/ir_1w1a.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet18/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet18/resnet.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w1a/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w1a/modules/binaryfunction.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w1a/modules/ir_1w1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w1a/modules/ir_1w1a.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w1a/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w1a/resnet.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w1a/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w1a/trainer.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w32a/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w32a/modules/binaryfunction.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w32a/modules/ir_1w32a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w32a/modules/ir_1w32a.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w32a/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w32a/resnet.py -------------------------------------------------------------------------------- /CIFAR-10/ResNet20/1w32a/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/ResNet20/1w32a/trainer.py -------------------------------------------------------------------------------- /CIFAR-10/VGG-Small/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/VGG-Small/main.py -------------------------------------------------------------------------------- /CIFAR-10/VGG-Small/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/VGG-Small/modules/binaryfunction.py -------------------------------------------------------------------------------- /CIFAR-10/VGG-Small/modules/ir_1w1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/VGG-Small/modules/ir_1w1a.py -------------------------------------------------------------------------------- /CIFAR-10/VGG-Small/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/CIFAR-10/VGG-Small/vgg.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w1a/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w1a/config.yaml -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w1a/models/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w1a/models/modules/binaryfunction.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w1a/models/modules/ir_1w1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w1a/models/modules/ir_1w1a.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w1a/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w1a/models/resnet.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w32a/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w32a/config.yaml -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w32a/models/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w32a/models/modules/binaryfunction.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w32a/models/modules/ir_1w32a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w32a/models/modules/ir_1w32a.py -------------------------------------------------------------------------------- /ImageNet/ResNet18/1w32a/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet18/1w32a/models/resnet.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w1a/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w1a/config.yaml -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w1a/models/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w1a/models/modules/binaryfunction.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w1a/models/modules/ir_1w1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w1a/models/modules/ir_1w1a.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w1a/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w1a/models/resnet.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w32a/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w32a/config.yaml -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w32a/models/modules/binaryfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w32a/models/modules/binaryfunction.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w32a/models/modules/ir_1w32a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w32a/models/modules/ir_1w32a.py -------------------------------------------------------------------------------- /ImageNet/ResNet34/1w32a/models/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/ImageNet/ResNet34/1w32a/models/resnet.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/htqin/IR-Net/HEAD/README.md --------------------------------------------------------------------------------