Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 708 Bytes

README.md

File metadata and controls

27 lines (17 loc) · 708 Bytes

Neural Arithmetic Logic Units

nalu

MXNet implementation of Neural Arithmetic Logic Units by Andrew Trask, Felix Hill, Scott Reed, Jack Rae, Chris Dyer and Phil Blunsom using MNIST dataset

Training

from mxnet import *

# Training and saving the model
python nalu.py action train

Prediction

from mxnet import *

# Performing prediction using the saved mxnet model
python nalu.py action predict

Note : Default action is train: python nalu.py

TODO: Reinforcement Learning Experiments