teelinsan / KerasDropconnect

An implementation of DropConnect Layer in Keras

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

An implementation of DropConnect Layer in Keras

License:MIT License


Languages

Language:Python 100.0%