Spaces:
Sleeping
Sleeping
Andrei Cozma
commited on
Commit
·
fba39bb
1
Parent(s):
8a49a12
Updates
Browse files- AgentBase.py +0 -1
AgentBase.py
CHANGED
@@ -74,7 +74,6 @@ class AgentBase:
|
|
74 |
if self.epsilon_override is None:
|
75 |
return np.random.choice(self.n_actions, p=self.Pi[state])
|
76 |
|
77 |
-
print("epsilon_override", self.epsilon_override)
|
78 |
return np.random.choice(
|
79 |
[greedy_action, np.random.randint(self.n_actions)],
|
80 |
p=[1.0 - self.epsilon_override, self.epsilon_override],
|
|
|
74 |
if self.epsilon_override is None:
|
75 |
return np.random.choice(self.n_actions, p=self.Pi[state])
|
76 |
|
|
|
77 |
return np.random.choice(
|
78 |
[greedy_action, np.random.randint(self.n_actions)],
|
79 |
p=[1.0 - self.epsilon_override, self.epsilon_override],
|