├── .gitignore ├── DaD ├── __init__.py ├── dad_control.py └── helpers │ ├── __init__.py │ ├── learner_wrapper.py │ └── pyhelpers.py ├── LICENSE ├── README.md └── demos ├── cartpole.py └── learn_control_demo.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/.gitignore -------------------------------------------------------------------------------- /DaD/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DaD/dad_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/DaD/dad_control.py -------------------------------------------------------------------------------- /DaD/helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DaD/helpers/learner_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/DaD/helpers/learner_wrapper.py -------------------------------------------------------------------------------- /DaD/helpers/pyhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/DaD/helpers/pyhelpers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/README.md -------------------------------------------------------------------------------- /demos/cartpole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/demos/cartpole.py -------------------------------------------------------------------------------- /demos/learn_control_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arunvenk/DaD/HEAD/demos/learn_control_demo.py --------------------------------------------------------------------------------