├── Gaussian Elimination.ipynb ├── README.md ├── failures.py ├── function_learning.py ├── imgs ├── arch.png └── extrapolation.png ├── models ├── __init__.py ├── mlp.py ├── nac.py ├── nalu.py └── utils.py └── results └── interpolation.txt /Gaussian Elimination.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/Gaussian Elimination.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/README.md -------------------------------------------------------------------------------- /failures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/failures.py -------------------------------------------------------------------------------- /function_learning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/function_learning.py -------------------------------------------------------------------------------- /imgs/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/imgs/arch.png -------------------------------------------------------------------------------- /imgs/extrapolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/imgs/extrapolation.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/models/__init__.py -------------------------------------------------------------------------------- /models/mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/models/mlp.py -------------------------------------------------------------------------------- /models/nac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/models/nac.py -------------------------------------------------------------------------------- /models/nalu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/models/nalu.py -------------------------------------------------------------------------------- /models/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/models/utils.py -------------------------------------------------------------------------------- /results/interpolation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/Neural_Arithmetic_Logic_Units/HEAD/results/interpolation.txt --------------------------------------------------------------------------------