Implementation of the bistable recurrent cell (BRC) in PyTorch
Project description
brc-pytorch
PyTorch implementation of the bistable recurrent cell (BRC) from the paper A bio-inspired bistable recurrent cell allows for long-lasting memory (Vecoven et al., 2020).
Install
pip install brc-pytorch
Usage
import torch
from brc_pytorch.modules import BRC, NBRC, StackedRNN
brc = StackedRNN(
cell=BRC, # NBRC for the neuromodulated version
input_size=128,
hidden_size=256,
num_layers=3
)
# [ seq_len, batch_size, dim ]
x = torch.randn(64, 32, 128)
init_hidden = brc.init_hidden(batch_size=32)
out, hidden = brc(x, init_hidden)
Performance
The implementation is provided in TorchScript and makes use of the PyTorch JIT compiler. In my not really statistically significant experiments, the implementation seems to be about half as fast as the cuDNN based reference LSTM implementation with modest batch sizes and sequence lengths which can be considered pretty solid for a non-CUDA implementation.
References
@misc{vecoven2020bioinspired,
title={A bio-inspired bistable recurrent cell allows for long-lasting memory},
author={Nicolas Vecoven and Damien Ernst and Guillaume Drion},
year={2020},
eprint={2006.05252},
archivePrefix={arXiv},
primaryClass={cs.NE}
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file brc-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: brc-0.1.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.0 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.8.0b4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 598c3f9f9b827c512b8518493c8e18f2286e888c1ac06d2a61dc3ee176bdd300 |
|
MD5 | 6dd2e7688b811ecb321e57d9d154f4ff |
|
BLAKE2b-256 | bf0e3223b77614869aad8585bd428448c316dc3c0c26236463c797c8ea5aa1a9 |