Local Binary Convolutional Neural Networks by pytorch
https://github.com/juefeix/lbcnn.torch
Only including the Convolutional layer through Local Binary,it was named LBCNN.py
Making Local Binary Convolutional layer instead of the original Convolutional layer
e.g:
from LBCNN import LBCNN #module
....
....
self.conv = LBCNN(in_channels,out_channels,3,stride,1) #define LBCNN in model file