├── .gitignore ├── LICENSE ├── README.md ├── acb.py ├── alexnet.py ├── convert.py ├── convnet_utils.py ├── dbb_transforms.py ├── dbb_verify.py ├── diversebranchblock.py ├── intro.PNG ├── mobilenet.py ├── resnet.py ├── table1.PNG ├── table2.PNG ├── test.py ├── train.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/README.md -------------------------------------------------------------------------------- /acb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/acb.py -------------------------------------------------------------------------------- /alexnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/alexnet.py -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/convert.py -------------------------------------------------------------------------------- /convnet_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/convnet_utils.py -------------------------------------------------------------------------------- /dbb_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/dbb_transforms.py -------------------------------------------------------------------------------- /dbb_verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/dbb_verify.py -------------------------------------------------------------------------------- /diversebranchblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/diversebranchblock.py -------------------------------------------------------------------------------- /intro.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/intro.PNG -------------------------------------------------------------------------------- /mobilenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/mobilenet.py -------------------------------------------------------------------------------- /resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/resnet.py -------------------------------------------------------------------------------- /table1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/table1.PNG -------------------------------------------------------------------------------- /table2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/table2.PNG -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DingXiaoH/DiverseBranchBlock/HEAD/utils.py --------------------------------------------------------------------------------