├── .gitignore ├── LICENSE ├── README.md ├── cpp ├── ETD.cpp └── TOETD.cpp └── py3 ├── dvtd.py ├── elstd.py ├── etd.py ├── gtd.py ├── htd.py ├── idbd.py ├── lstd.py ├── td.py └── totd.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/README.md -------------------------------------------------------------------------------- /cpp/ETD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/cpp/ETD.cpp -------------------------------------------------------------------------------- /cpp/TOETD.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/cpp/TOETD.cpp -------------------------------------------------------------------------------- /py3/dvtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/dvtd.py -------------------------------------------------------------------------------- /py3/elstd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/elstd.py -------------------------------------------------------------------------------- /py3/etd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/etd.py -------------------------------------------------------------------------------- /py3/gtd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/gtd.py -------------------------------------------------------------------------------- /py3/htd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/htd.py -------------------------------------------------------------------------------- /py3/idbd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/idbd.py -------------------------------------------------------------------------------- /py3/lstd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/lstd.py -------------------------------------------------------------------------------- /py3/td.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/td.py -------------------------------------------------------------------------------- /py3/totd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rldotai/rl-algorithms/HEAD/py3/totd.py --------------------------------------------------------------------------------