├── .gitignore ├── LICENSE.txt ├── README.md ├── check_mlp.py ├── mlp.py └── preprocessing.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholzmueller/realmlp-td-s_standalone/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholzmueller/realmlp-td-s_standalone/HEAD/README.md -------------------------------------------------------------------------------- /check_mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholzmueller/realmlp-td-s_standalone/HEAD/check_mlp.py -------------------------------------------------------------------------------- /mlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholzmueller/realmlp-td-s_standalone/HEAD/mlp.py -------------------------------------------------------------------------------- /preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dholzmueller/realmlp-td-s_standalone/HEAD/preprocessing.py --------------------------------------------------------------------------------