Spaces:
Sleeping
Sleeping
added kwargs
Browse files- DPAgent.py +1 -1
DPAgent.py
CHANGED
@@ -16,7 +16,7 @@ class DPAgent(Shared):
|
|
16 |
def policy(self, state):
|
17 |
return self.Pi[state]
|
18 |
|
19 |
-
def train(self):
|
20 |
i = 0
|
21 |
while True:
|
22 |
delta = 0
|
|
|
16 |
def policy(self, state):
|
17 |
return self.Pi[state]
|
18 |
|
19 |
+
def train(self, **kwargs):
|
20 |
i = 0
|
21 |
while True:
|
22 |
delta = 0
|