Victor Douet

Results 2 issues of Victor Douet

Hi, I noticed that no license file has been created for this repository. And according to: [Github's documentation](https://docs.github.com/en/github/creating-cloning-and-archiving-repositories/creating-a-repository-on-github/licensing-a-repository) -> > You're under no obligation to choose a license. However, without...

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 =...