10000 (cont.) fixed constant exploration · pythonAI/tensorforce@7c39daa · GitHub
[go: up one dir, main page]

Skip to content

Commit 7c39daa

Browse files
committed
(cont.) fixed constant exploration
1 parent 157795d commit 7c39daa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tensorforce/core/explorations/constant.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ def __init__(self, constant=0.0, scope='constant', summary_labels=()):
2525
self.constant = constant
2626
super(Constant, self).__init__(scope=scope, summary_labels=summary_labels)
2727

28-
def tf_explore(self, episode, timestep, action_shape, action_spec=None):
28+
def tf_explore(self, episode, timestep, action_spec=None):
2929
return self.constant

0 commit comments

Comments
 (0)
0