├── .gitattributes ├── .gitignore ├── Apprenticeship Learning via Inverse Reinforcement Learning.pdf ├── Apprenticeship_Inverse_Reinforcement_Learning.ipynb ├── README.md ├── assets ├── Expert.mp4 ├── Student_0.mp4 ├── Student_2.mp4 ├── Student_5.mp4 ├── Student_9.mp4 ├── doubleDQN-COAyi4-VlEw.mkv ├── dqn.gif ├── dqn.png ├── ffmpeg_cmd.sh ├── output.gif ├── output.mp4 ├── tabular_q.gif └── tabular_q.png ├── debug.py ├── expert_Q ├── learnedQ └── linearq.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode -------------------------------------------------------------------------------- /Apprenticeship Learning via Inverse Reinforcement Learning.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/Apprenticeship Learning via Inverse Reinforcement Learning.pdf -------------------------------------------------------------------------------- /Apprenticeship_Inverse_Reinforcement_Learning.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/Apprenticeship_Inverse_Reinforcement_Learning.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/README.md -------------------------------------------------------------------------------- /assets/Expert.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/Expert.mp4 -------------------------------------------------------------------------------- /assets/Student_0.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/Student_0.mp4 -------------------------------------------------------------------------------- /assets/Student_2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/Student_2.mp4 -------------------------------------------------------------------------------- /assets/Student_5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/Student_5.mp4 -------------------------------------------------------------------------------- /assets/Student_9.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/Student_9.mp4 -------------------------------------------------------------------------------- /assets/doubleDQN-COAyi4-VlEw.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/doubleDQN-COAyi4-VlEw.mkv -------------------------------------------------------------------------------- /assets/dqn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/dqn.gif -------------------------------------------------------------------------------- /assets/dqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/dqn.png -------------------------------------------------------------------------------- /assets/ffmpeg_cmd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/ffmpeg_cmd.sh -------------------------------------------------------------------------------- /assets/output.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/output.gif -------------------------------------------------------------------------------- /assets/output.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/output.mp4 -------------------------------------------------------------------------------- /assets/tabular_q.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/tabular_q.gif -------------------------------------------------------------------------------- /assets/tabular_q.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/assets/tabular_q.png -------------------------------------------------------------------------------- /debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/debug.py -------------------------------------------------------------------------------- /expert_Q: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/expert_Q -------------------------------------------------------------------------------- /learnedQ: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/learnedQ -------------------------------------------------------------------------------- /linearq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhklite/apprenticeship_inverse_RL/HEAD/linearq.py --------------------------------------------------------------------------------