lharri73 commited on
Commit
22ea33b
·
1 Parent(s): 5fc752e

added kwargs

Browse files
Files changed (1) hide show
  1. 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