Commit
·
f3158b6
1
Parent(s):
1cfd8eb
Update README.md
Browse files
README.md
CHANGED
@@ -1,6 +1,5 @@
|
|
1 |
---
|
2 |
tags:
|
3 |
-
- Taxi-v3
|
4 |
- q-learning
|
5 |
- reinforcement-learning
|
6 |
- custom-implementation
|
@@ -20,16 +19,14 @@ 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
|
27 |
|
28 |
```python
|
29 |
-
|
30 |
model = load_from_hub(repo_id="yigitkucuk/TAXI", filename="q-learning.pkl")
|
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 |
|
|
|
1 |
---
|
2 |
tags:
|
|
|
3 |
- q-learning
|
4 |
- reinforcement-learning
|
5 |
- custom-implementation
|
|
|
19 |
verified: false
|
20 |
---
|
21 |
|
22 |
+
# **Q-Learning** Agent playing **Taxi-v3**
|
23 |
This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
|
24 |
|
25 |
## Usage
|
26 |
|
27 |
```python
|
|
|
28 |
model = load_from_hub(repo_id="yigitkucuk/TAXI", filename="q-learning.pkl")
|
29 |
|
|
|
30 |
env = gym.make(model["env_id"])
|
31 |
```
|
32 |
|