Reinforcement-Learning-In-Motion icon indicating copy to clipboard operation
Reinforcement-Learning-In-Motion copied to clipboard

Code repository for my course on the fundamentals of reinforcement learning

Results 2 Reinforcement-Learning-In-Motion issues
Sort by recently updated
recently updated
newest added

Hi, For the code for TD(0) approximation '[tdZeroApprox.py](https://github.com/philtabor/Reinforcement-Learning-In-Motion/blob/master/Unit-8-The-Mountaincar/tdZeroApprox.py)' in Unit-8-The-Mountaincar. Line 19 when the numpy array 'tiledState' is created: ```python tiledState = np.zeros(nTiles*nTiles*nTiles) ``` Shouldn't it be: ```python tiledState =...

Do you have nay book or slide to support videos ?