An open API service indexing awesome lists of open source software.

https://github.com/teelinsan/kerasdropconnect

An implementation of DropConnect Layer in Keras
https://github.com/teelinsan/kerasdropconnect

connect deep-learning drop dropconnect keras keras-implementations keras-neural-networks machine-learning regularization

Last synced: about 2 months ago
JSON representation

An implementation of DropConnect Layer in Keras

Awesome Lists containing this project

README

          

# 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