https://github.com/kenza-ai/deep-learning-addition
An implementation of sequence to sequence learning for performing addition
https://github.com/kenza-ai/deep-learning-addition
Last synced: about 2 months ago
JSON representation
An implementation of sequence to sequence learning for performing addition
- Host: GitHub
- URL: https://github.com/kenza-ai/deep-learning-addition
- Owner: Kenza-AI
- License: mit
- Created: 2018-04-22T18:27:13.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:05:20.000Z (over 2 years ago)
- Last Synced: 2025-02-14T17:40:44.356Z (4 months ago)
- Language: Python
- Size: 31.3 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deep-learning-addition
A LSTM model that learns to perform arithmetic addition on integers. It's a simple Deep Learning calculator.Example: 12 + 134 = 146
## Development
- Python 3.6 and 2.7
- For Python 2.7 replace the value of `REQUIRED_PYTHON` and `PYTHON_INTERPRETER` in `test_environment.py` and `Makefile`, respectively, to `python2`
- [awscli](https://pypi.python.org/pypi/awscli) installed and configured## Commands
```
clean Delete all compiled Python files
create_environment Set up python interpreter environment
data Make Dataset
lint Lint using flake8
requirements Install Python Dependencies
test_environment Test python environment is setup correctly
train Train Deep Learning Model
```