Skip to content

Files

Latest commit

0b203b5 · Dec 13, 2019

History

History
18 lines (15 loc) · 451 Bytes

README.md

File metadata and controls

18 lines (15 loc) · 451 Bytes

KerasDropconnect

An implementation of DropConnect Layer in Keras

Install

  git clone https://github.com/andry9454/KerasDropconnect.git
  cd KerasDropconnect
  pip3 install .

Usage

from ddrop.layers import DropConnect

x = DropConnect(Dense(64, activation='relu'), prob=0.5)(x)

Credits

Original implementation forked from Derek Khu's repository