guilhem-sante commited on
Commit
aec2de9
·
verified ·
1 Parent(s): 4977a41

Upload folder using huggingface_hub

Browse files
Files changed (3) hide show
  1. README.md +39 -0
  2. q-learning.pkl +3 -0
  3. results.json +1 -0
README.md ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - Taxi-v3
4
+ - q-learning
5
+ - reinforcement-learning
6
+ - custom-implementation
7
+ - gymnasium
8
+ model-index:
9
+ - name: q-taxi-v3
10
+ results:
11
+ - task:
12
+ type: reinforcement-learning
13
+ name: reinforcement-learning
14
+ dataset:
15
+ name: Taxi-v3
16
+ type: Taxi-v3
17
+ metrics:
18
+ - type: mean_reward
19
+ value: 7.56 +/- 2.71
20
+ name: mean_reward
21
+ verified: false
22
+ ---
23
+
24
+ # **Q-Learning** Agent playing **Taxi-v3**
25
+ This is a trained model of a **Q-Learning** agent playing to the Gymnasium **Taxi-v3** reinforcement learning environment.
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+
31
+ model = load_from_hub(repo_id="coding-kelps/q-taxi-v3", filename="q-learning.pkl")
32
+
33
+ # Don't forget to check if you need to add additional attributes
34
+ env = gym.make(model["env_id"])
35
+ ```
36
+
37
+ ## References
38
+
39
+ You can find the original source code of the model training in the corresponding [Coding Kelps aquaqym repository](https://github.com/coding-kelps/aquagym).
q-learning.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c10eaf619e18aed727527b1b22f82cc71445fd355946b7d470400b1f2783be1
3
+ size 24572
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"env_id": "Taxi-v3", "mean_reward": 7.56, "n_eval_episodes": 100, "eval_datetime": "2025-02-19T15:43:22.619288"}