Youxuan commited on
Commit
3fe49c3
1 Parent(s): 3819e6b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +3 -1
README.md CHANGED
@@ -20,7 +20,7 @@ model-index:
20
  verified: false
21
  ---
22
 
23
- # **Q-Learning** Agent playing1 **Taxi-v3**
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