readme.md 2.0 KB
Newer Older
V
readme  
Varuna Jayasiri 已提交
1 2 3 4 5 6 7 8 9 10 11 12
[![PiPy Version](https://badge.fury.io/py/labml-nn.svg)](https://badge.fury.io/py/labml-nn)
[![PiPy Downloads](https://pepy.tech/badge/labml-nn)](https://pepy.tech/project/labml-nn)

# [LabML Neural Networks](http://lab-ml.com/labml_nn/index.html)

This is a collection of simple PyTorch implementation of various
neural network architectures and layers.
We will keep adding to this.

**If you have any suggestions for other new implementations,
please create a [Github Issue](https://github.com/lab-ml/labml_nn/issues).**

V
readme  
Varuna Jayasiri 已提交
13
#### ✨ [Transformers](http://lab-ml.com/labml_nn/transformers)
V
readme  
Varuna Jayasiri 已提交
14

V
readme  
Varuna Jayasiri 已提交
15
[Transformers module](http://lab-ml.com/labml_nn/transformers)
V
readme  
Varuna Jayasiri 已提交
16 17 18 19 20
contains implementations for
[multi-headed attention](http://lab-ml.com/labml_nn/transformers/mha.html)
and
[relative multi-headed attention](http://lab-ml.com/labml_nn/transformers/relative_mha.html>).

V
readme  
Varuna Jayasiri 已提交
21
#### ✨ [Recurrent Highway Networks](http://lab-ml.com/labml_nn/recurrent_highway_networks)
V
readme  
Varuna Jayasiri 已提交
22

V
readme  
Varuna Jayasiri 已提交
23
#### ✨ [LSTM](http://lab-ml.com/labml_nn/lstm)
V
readme  
Varuna Jayasiri 已提交
24

V
readme  
Varuna Jayasiri 已提交
25 26 27
#### ✨ [Capsule Networks](http://lab-ml.com/labml_nn/capsule_networks/)

#### ✨ [Generative Adversarial Networks](http://lab-ml.com/labml_nn/gan/)
V
dcgan  
Varuna Jayasiri 已提交
28 29
* [GAN with a multi-layer perceptron](http://lab-ml.com/labml_nn/gan/simple_mnist_experiment.html)
* [GAN with deep convolutional network](http://lab-ml.com/labml_nn/gan/dcgan.html)
V
Varuna Jayasiri 已提交
30
* [Cycle GAN](http://lab-ml.com/labml_nn/gan/cycle_gan.html)
V
readme  
Varuna Jayasiri 已提交
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60

### Installation

```bash
pip install labml_nn
```

### Links

[💬 Slack workspace for discussions](https://join.slack.com/t/labforml/shared_invite/zt-egj9zvq9-Dl3hhZqobexgT7aVKnD14g/)_

[📗 Documentation](http://lab-ml.com)

[📑 Articles & Tutorials](https://medium.com/@labml/)

[👨‍🏫 Samples](https://github.com/lab-ml/samples)


### Citing LabML

If you use LabML for academic research, please cite the library using the following BibTeX entry.

```bibtex
@misc{labml,
 author = {Varuna Jayasiri, Nipun Wijerathne},
 title = {LabML: A library to organize machine learning experiments},
 year = {2020},
 url = {https://lab-ml.com/},
}
```