hishamcse commited on
Commit
a0f58db
·
verified ·
1 Parent(s): e9f787b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +17 -8
README.md CHANGED
@@ -20,16 +20,25 @@ model-index:
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
- ## Usage
27
 
28
- ```python
 
 
29
 
30
- model = load_from_hub(repo_id="hishamcse/q-FrozenLake-v1-8x8", 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
 
 
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