├── .gitignore ├── .gitmodules ├── README.md ├── cifar ├── fmconv_scheduler.py ├── run.sh ├── symbol_inception-bn-small-bilinear.py ├── symbol_inception-bn-small-fmconv.py ├── symbol_inception-bn-small.py ├── symbol_resnet-small-fmconv.py ├── symbol_resnet-small.py └── train_cifar.py ├── imagenet ├── fmconv_scheduler.py ├── run.sh ├── symbol_inception-bn-fmconv.py ├── symbol_inception-bn.py ├── symbol_resnet-fmconv.py └── train_imagenet.py └── tools └── show_log.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/README.md -------------------------------------------------------------------------------- /cifar/fmconv_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/fmconv_scheduler.py -------------------------------------------------------------------------------- /cifar/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/run.sh -------------------------------------------------------------------------------- /cifar/symbol_inception-bn-small-bilinear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/symbol_inception-bn-small-bilinear.py -------------------------------------------------------------------------------- /cifar/symbol_inception-bn-small-fmconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/symbol_inception-bn-small-fmconv.py -------------------------------------------------------------------------------- /cifar/symbol_inception-bn-small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/symbol_inception-bn-small.py -------------------------------------------------------------------------------- /cifar/symbol_resnet-small-fmconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/symbol_resnet-small-fmconv.py -------------------------------------------------------------------------------- /cifar/symbol_resnet-small.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/symbol_resnet-small.py -------------------------------------------------------------------------------- /cifar/train_cifar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/cifar/train_cifar.py -------------------------------------------------------------------------------- /imagenet/fmconv_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/fmconv_scheduler.py -------------------------------------------------------------------------------- /imagenet/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/run.sh -------------------------------------------------------------------------------- /imagenet/symbol_inception-bn-fmconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/symbol_inception-bn-fmconv.py -------------------------------------------------------------------------------- /imagenet/symbol_inception-bn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/symbol_inception-bn.py -------------------------------------------------------------------------------- /imagenet/symbol_resnet-fmconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/symbol_resnet-fmconv.py -------------------------------------------------------------------------------- /imagenet/train_imagenet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/imagenet/train_imagenet.py -------------------------------------------------------------------------------- /tools/show_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyttonhao/Factorized-Bilinear-Network/HEAD/tools/show_log.py --------------------------------------------------------------------------------