Update README.md
Browse files
README.md
CHANGED
@@ -20,16 +20,25 @@ model-index:
|
|
20 |
verified: false
|
21 |
---
|
22 |
|
23 |
-
|
24 |
-
|
25 |
|
26 |
-
|
27 |
|
28 |
-
|
|
|
|
|
29 |
|
30 |
-
|
|
|
31 |
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
35 |
|
|
|
20 |
verified: false
|
21 |
---
|
22 |
|
23 |
+
# **Q-Learning** Agent playing1 **FrozenLake-v1**
|
24 |
+
This is a trained model of a **Q-Learning** agent playing **FrozenLake-v1** .
|
25 |
|
26 |
+
## Codes
|
27 |
|
28 |
+
Github repos(Give a star if found useful):
|
29 |
+
* https://github.com/hishamcse/DRL-Renegades-Game-Bots
|
30 |
+
* https://github.com/hishamcse/Advanced-DRL-Renegades-Game-Bots
|
31 |
|
32 |
+
Kaggle Notebook:
|
33 |
+
* https://www.kaggle.com/code/syedjarullahhisham/drl-huggingface-unit-2-frozenlake-v1-taxi-v3
|
34 |
|
35 |
+
## Usage
|
36 |
+
|
37 |
+
```python
|
38 |
+
|
39 |
+
model = load_from_hub(repo_id="hishamcse/q-FrozenLake-v1-8x8", filename="q-learning.pkl")
|
40 |
+
|
41 |
+
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
|
42 |
+
env = gym.make(model["env_id"])
|
43 |
+
```
|
44 |
|