Update README.md
Browse files
README.md
CHANGED
@@ -20,7 +20,7 @@ model-index:
|
|
20 |
verified: false
|
21 |
---
|
22 |
|
23 |
-
# **Q-Learning** Agent
|
24 |
This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
|
25 |
|
26 |
## Usage
|
@@ -31,5 +31,7 @@ model-index:
|
|
31 |
|
32 |
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
|
33 |
env = gym.make(model["env_id"])
|
|
|
|
|
34 |
```
|
35 |
|
|
|
20 |
verified: false
|
21 |
---
|
22 |
|
23 |
+
# **Q-Learning** Agent playing **Taxi-v3**
|
24 |
This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
|
25 |
|
26 |
## Usage
|
|
|
31 |
|
32 |
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
|
33 |
env = gym.make(model["env_id"])
|
34 |
+
|
35 |
+
evaluate_agent(env, model["max_steps"], model["n_eval_episodes"], model["qtable"], model["eval_seed"])
|
36 |
```
|
37 |
|