rethinking-bnn-optimization
rethinking-bnn-optimization copied to clipboard
Implementation for the paper "Latent Weights Do Not Exist: Rethinking Binarized Neural Network Optimization"
In birealnet.py, I observe that kernel_initializer is set as "glorot_normal" for Conv2d; However, in QuantConv2D, the kernel_initializer is set as "glorot_normal". Kernel_initializer ="glorot_normal" means the kernel weights are all set...
I am running [this](https://github.com/plumerai/rethinking-bnn-optimization) experiment on Google Collaboratory. GPU is chosen as runtime. But, Training is taking longer to complete. Is CPU chosen explicitly in the code or Is this...
Hi, when I ran this programe, it said 'cannot found imagenet2012-train.tfrecord-00823-of-01000' error, how can I transfer imagenet_train.tar and imagenet_val.tar into corresponding tfrecord?
Hello everyone, I've been trying to run the Nets using the ImageNet dataset but the issue is that it cannot be downloaded from the default URL. I have the tars...
Hi Koen, Thanks for the great work! I noticed to reproduce BinaryNet on CIFAR-10 experiment of section 5.2, you use the setting as followed: `class bop_sec52(default):` ` epochs = 500...
Thanks for really good paper. Do you plan to implement it as a PyTorch version?