├── .github └── ISSUE_TEMPLATE │ ├── bug-in-code-solution.md │ └── missing-exercise-or-outdated-statement.md ├── .gitignore ├── Chapter 1 ├── Exercise 1.1.md ├── Exercise 1.2.md ├── Exercise 1.3.md ├── Exercise 1.4.md └── Exercise 1.5.md ├── Chapter 2 ├── Exercise 2.1.md ├── Exercise 2.2.md ├── Exercise 2.3.md ├── Exercise 2.4.md ├── Exercise 2.5.md ├── Exercise 2.6.md ├── Exercise 2.7.md ├── Exercise 2.8.md ├── Exercise 2.9.md ├── code │ ├── Exercise 2.5.py │ ├── Exercise 2.9.py │ ├── estimators.py │ └── testbed.py ├── images │ ├── Exercise_2_7.png │ ├── action_optimality.png │ ├── average_reward.png │ └── average_reward_per_parameter_conf.png └── tex_files │ └── exercise2.7.tex ├── Chapter 3 └── Chapter 3 Exercises.ipynb └── README.md /.github/ISSUE_TEMPLATE/bug-in-code-solution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/.github/ISSUE_TEMPLATE/bug-in-code-solution.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/missing-exercise-or-outdated-statement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/.github/ISSUE_TEMPLATE/missing-exercise-or-outdated-statement.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | -------------------------------------------------------------------------------- /Chapter 1/Exercise 1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 1/Exercise 1.1.md -------------------------------------------------------------------------------- /Chapter 1/Exercise 1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 1/Exercise 1.2.md -------------------------------------------------------------------------------- /Chapter 1/Exercise 1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 1/Exercise 1.3.md -------------------------------------------------------------------------------- /Chapter 1/Exercise 1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 1/Exercise 1.4.md -------------------------------------------------------------------------------- /Chapter 1/Exercise 1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 1/Exercise 1.5.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.1.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.2.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.3.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.4.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.5.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.6.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.7.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.8.md -------------------------------------------------------------------------------- /Chapter 2/Exercise 2.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/Exercise 2.9.md -------------------------------------------------------------------------------- /Chapter 2/code/Exercise 2.5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/code/Exercise 2.5.py -------------------------------------------------------------------------------- /Chapter 2/code/Exercise 2.9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/code/Exercise 2.9.py -------------------------------------------------------------------------------- /Chapter 2/code/estimators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/code/estimators.py -------------------------------------------------------------------------------- /Chapter 2/code/testbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/code/testbed.py -------------------------------------------------------------------------------- /Chapter 2/images/Exercise_2_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/images/Exercise_2_7.png -------------------------------------------------------------------------------- /Chapter 2/images/action_optimality.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/images/action_optimality.png -------------------------------------------------------------------------------- /Chapter 2/images/average_reward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/images/average_reward.png -------------------------------------------------------------------------------- /Chapter 2/images/average_reward_per_parameter_conf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/images/average_reward_per_parameter_conf.png -------------------------------------------------------------------------------- /Chapter 2/tex_files/exercise2.7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 2/tex_files/exercise2.7.tex -------------------------------------------------------------------------------- /Chapter 3/Chapter 3 Exercises.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/Chapter 3/Chapter 3 Exercises.ipynb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iamhectorotero/rlai-exercises/HEAD/README.md --------------------------------------------------------------------------------