Spaces:
Sleeping
Sleeping
Andrei Cozma
commited on
Commit
·
1b140f8
1
Parent(s):
17d4626
Updates
Browse files
MCAgent.py
CHANGED
@@ -6,16 +6,8 @@ from Shared import Shared
|
|
6 |
|
7 |
class MCAgent(Shared):
|
8 |
|
9 |
-
def __init__(
|
10 |
-
|
11 |
-
/,
|
12 |
-
env="CliffWalking-v0",
|
13 |
-
gamma=0.99,
|
14 |
-
epsilon=0.1,
|
15 |
-
run_name=None,
|
16 |
-
**kwargs,
|
17 |
-
):
|
18 |
-
super().__init__(env, gamma, epsilon, run_name, **kwargs)
|
19 |
self.reset()
|
20 |
|
21 |
def reset(self):
|
|
|
6 |
|
7 |
class MCAgent(Shared):
|
8 |
|
9 |
+
def __init__(self, /, **kwargs):
|
10 |
+
super().__init__(**kwargs)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
self.reset()
|
12 |
|
13 |
def reset(self):
|
policies/MCAgent_FrozenLake-v1_e2500_s200_g1.0_e0.2_first_visit.npy
CHANGED
Binary files a/policies/MCAgent_FrozenLake-v1_e2500_s200_g1.0_e0.2_first_visit.npy and b/policies/MCAgent_FrozenLake-v1_e2500_s200_g1.0_e0.2_first_visit.npy differ
|
|