sryu1 commited on
Commit
df3a0be
·
1 Parent(s): e46152d

Upload . with huggingface_hub

Browse files
Files changed (4) hide show
  1. README.md +36 -0
  2. q-learning.pkl +3 -0
  3. replay.mp4 +0 -0
  4. results.json +1 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ tags:
3
+ - Taxi-v3
4
+ - q-learning
5
+ - reinforcement-learning
6
+ - custom-implementation
7
+ model-index:
8
+ - name: Taxi
9
+ results:
10
+ - task:
11
+ type: reinforcement-learning
12
+ name: reinforcement-learning
13
+ dataset:
14
+ name: Taxi-v3
15
+ type: Taxi-v3
16
+ metrics:
17
+ - type: mean_reward
18
+ value: 7.56 +/- 2.71
19
+ name: mean_reward
20
+ verified: false
21
+ ---
22
+
23
+
24
+ # **Q-Learning** Agent playing1 **Taxi-v3**
25
+ This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
26
+
27
+ ## Usage
28
+
29
+ ```python
30
+
31
+ model = load_from_hub(repo_id="sryu1/Taxi", filename="q-learning.pkl")
32
+
33
+ # Don't forget to check if you need to add additional attributes (is_slippery=False etc)
34
+ env = gym.make(model["env_id"])
35
+ ```
36
+
q-learning.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b51b8a465ca173e981df75640744961eb740646f44bc81714b0572a0fbc7225
3
+ size 24570
replay.mp4 ADDED
Binary file (117 kB). View file
 
results.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"env_id": "Taxi-v3", "mean_reward": 7.56, "n_eval_episodes": 100, "eval_datetime": "2022-12-13T20:54:23.280422"}