Update hands-on.mdx

This commit is contained in:
Thomas Simonini
2023-02-25 18:16:01 +01:00
committed by GitHub
parent f744071184
commit d041fd29ea

View File

@@ -261,7 +261,8 @@ print("There are ", action_space, " possible actions")
```
```python
# Let's create our Qtable of size (state_space, action_space) and initialized each values at 0 using np.zeros
# Let's create our Qtable of size (state_space, action_space) and initialized each values at 0 using np.zeros. np.zeros needs a tuple (a,b)
def initialize_q_table(state_space, action_space):
Qtable =
return Qtable