An implementation of DropConnect Layer in Keras
git clone https://github.com/andry9454/KerasDropconnect.git
cd KerasDropconnect
pip3 install .
from ddrop.layers import DropConnect
x = DropConnect(Dense(64, activation='relu'), prob=0.5)(x)
Original implementation forked from Derek Khu's repository