All Projects → ivannz → Cplxmodule

ivannz / Cplxmodule

Licence: mit
Complex-valued neural networks for pytorch and Variational Dropout for real and complex layers.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Cplxmodule

Densenet Sdr
repo that holds code for improving on dropout using Stochastic Delta Rule
Stars: ✭ 148 (+190.2%)
Mutual labels:  dropout
Machine-Learning-in-Python-Workshop
My workshop on machine learning using python language to implement different algorithms
Stars: ✭ 89 (+74.51%)
Mutual labels:  dropout
Tensorflow Tutorial
Tensorflow tutorial from basic to hard, 莫烦Python 中文AI教学
Stars: ✭ 4,122 (+7982.35%)
Mutual labels:  dropout
Ailearnnotes
Artificial Intelligence Learning Notes.
Stars: ✭ 195 (+282.35%)
Mutual labels:  dropout
LoL-Match-Prediction
Win probability predictions for League of Legends matches using neural networks
Stars: ✭ 34 (-33.33%)
Mutual labels:  dropout
CS231n
My solutions for Assignments of CS231n: Convolutional Neural Networks for Visual Recognition
Stars: ✭ 30 (-41.18%)
Mutual labels:  dropout
Lstms.pth
PyTorch implementations of LSTM Variants (Dropout + Layer Norm)
Stars: ✭ 111 (+117.65%)
Mutual labels:  dropout
Variance Networks
Variance Networks: When Expectation Does Not Meet Your Expectations, ICLR 2019
Stars: ✭ 38 (-25.49%)
Mutual labels:  dropout
NIPS-Global-Paper-Implementation-Challenge
Selective Classification For Deep Neural Networks.
Stars: ✭ 11 (-78.43%)
Mutual labels:  dropout
Theano lstm
🔬 Nano size Theano LSTM module
Stars: ✭ 310 (+507.84%)
Mutual labels:  dropout
Targeted Dropout
Complementary code for the Targeted Dropout paper
Stars: ✭ 251 (+392.16%)
Mutual labels:  dropout
numpy-neuralnet-exercise
Implementation of key concepts of neuralnetwork via numpy
Stars: ✭ 49 (-3.92%)
Mutual labels:  dropout
dropclass speaker
DropClass and DropAdapt - repository for the paper accepted to Speaker Odyssey 2020
Stars: ✭ 20 (-60.78%)
Mutual labels:  dropout
Tensorflow Mnist Cnn
MNIST classification using Convolutional NeuralNetwork. Various techniques such as data augmentation, dropout, batchnormalization, etc are implemented.
Stars: ✭ 182 (+256.86%)
Mutual labels:  dropout
Dropblock
Implementation of DropBlock: A regularization method for convolutional networks in PyTorch.
Stars: ✭ 466 (+813.73%)
Mutual labels:  dropout
Daguan 2019 rank9
datagrand 2019 information extraction competition rank9
Stars: ✭ 121 (+137.25%)
Mutual labels:  dropout
Dropouts
PyTorch Implementations of Dropout Variants
Stars: ✭ 72 (+41.18%)
Mutual labels:  dropout
Svhn Cnn
Google Street View House Number(SVHN) Dataset, and classifying them through CNN
Stars: ✭ 44 (-13.73%)
Mutual labels:  dropout
Satania.moe
Satania IS the BEST waifu, no really, she is, if you don't believe me, this website will convince you
Stars: ✭ 486 (+852.94%)
Mutual labels:  dropout
Deepnet
Implementation of CNNs, RNNs, and many deep learning techniques in plain Numpy.
Stars: ✭ 285 (+458.82%)
Mutual labels:  dropout

CplxModule

A lightweight extension for torch.nn that adds layers and activations, which respect algebraic operations over the field of complex numbers.

The core implementation of the complex-valued batch normalization and weight initialization layers is based on the ICLR 2018 parer by Chiheb Trabelsi et al. on Deep Complex Networks [1] and borrows ideas from their implementation (nn.init, nn.modules.batchnorm). Real-valued variational dropout and automatic relevance determination are original implementations based on the profound works by Diederik Kingma et al. (2015) [2], Dmitry Molchanov et al. (2017) [3], and Valery Kharitonov et al. (2018) [4]. Complex-valued Bayesian sparsification layers are based on original research [5].

Installation

You can install this package with pip:

pip install cplxmodule

or from the git repo to get the latest version:

pip install --upgrade git+https://github.com/ivannz/cplxmodule.git

If you prefer a developer install (editable), then run the following from the root of the locally cloned repo

pip install -e .

Documentation

Please refer to README files located in cplxmodule.nn, cplxmodule.nn.relevance, and cplxmodule.nn.masked for a high-level description of the implementation, functionality and useful code patterns.

References

.. [1] Trabelsi, C., Bilaniuk, O., Zhang, Y., Serdyuk, D., Subramanian, S., Santos, J. F., Mehri, S., Rostamzadeh, N, Bengio, Y. & Pal, C. J. (2018). Deep complex networks. In International Conference on Learning Representations, 2018. URL https://openreview.net/forum?id=H1T2hmZAb.

.. [2] Kingma, D. P., Salimans, T., & Welling, M. (2015). Variational dropout and the local reparameterization trick. In Advances in neural information processing systems (pp. 2575-2583).

.. [3] Molchanov, D., Ashukha, A., & Vetrov, D. (2017, August). Variational dropout sparsifies deep neural networks. In Proceedings of the 34th International Conference on Machine Learning-Volume 70 (pp. 2498-2507). JMLR.org

.. [4] Kharitonov, V., Molchanov, D., & Vetrov, D. (2018). Variational Dropout via Empirical Bayes. arXiv preprint arXiv:1811.00596.

.. [5] Nazarov, I., & Burnaev, E. (2020, November). Bayesian Sparsification of Deep C-valued Networks. In International Conference on Machine Learning (pp. 7230-7242). PMLR.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].