Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bharathgs/nalu
Basic pytorch implementation of NAC/NALU from Neural Arithmetic Logic Units paper by trask et.al
https://github.com/bharathgs/nalu
accumulator alu arithmetic deep-learning deepmind logic machine-learning nalu neural-network pytorch
Last synced: 14 days ago
JSON representation
Basic pytorch implementation of NAC/NALU from Neural Arithmetic Logic Units paper by trask et.al
- Host: GitHub
- URL: https://github.com/bharathgs/nalu
- Owner: bharathgs
- License: mit
- Created: 2018-08-04T14:00:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-03T09:43:06.000Z (about 6 years ago)
- Last Synced: 2024-04-28T11:21:40.541Z (7 months ago)
- Topics: accumulator, alu, arithmetic, deep-learning, deepmind, logic, machine-learning, nalu, neural-network, pytorch
- Language: Python
- Homepage: https://arxiv.org/pdf/1808.00508.pdf
- Size: 168 KB
- Stars: 115
- Watchers: 14
- Forks: 21
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# Neural Arithmetic Logic Units (NALU)
[![Downloads](https://pepy.tech/badge/nalu)](https://pepy.tech/project/nalu)
![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)
![Hackage-Deps](https://img.shields.io/hackage-deps/v/lens.svg)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/Django.svg)![](resources/NALU.png)
Basic pytorch implementation of NAC/NALU from [Neural Arithmetic Logic Units](https://arxiv.org/pdf/1808.00508.pdf) by trask et.al
## Installation
```python
pip install NALU
```## Usage
```python
from nalu.core import NaluCell, NacCell
from nalu.layers import NaluLayer
```