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
- Host: GitHub
- URL: https://github.com/teelinsan/kerasdropconnect
- Owner: teelinsan
- License: mit
- Created: 2018-01-26T17:08:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-12-13T15:21:19.000Z (almost 6 years ago)
- Last Synced: 2025-04-19T19:06:43.753Z (6 months ago)
- Topics: connect, deep-learning, drop, dropconnect, keras, keras-implementations, keras-neural-networks, machine-learning, regularization
- Language: Python
- Size: 9.77 KB
- Stars: 36
- Watchers: 2
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 DropConnectx = DropConnect(Dense(64, activation='relu'), prob=0.5)(x)
```
## Credits
Original implementation forked from Derek Khu's repository