Skip to content
This repository was archived by the owner on Aug 29, 2024. It is now read-only.

Commit 3c4ddc4

Browse files
Google Research Teamagarwl
authored andcommitted
Internal change
PiperOrigin-RevId: 352073168
1 parent 2ce885d commit 3c4ddc4

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

batch_rl/baselines/replay_memory/logged_prioritized_replay_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def log_final_buffer(self):
8989
self.add_count = add_count
9090

9191

92-
@gin.configurable(blacklist=['observation_shape', 'stack_size',
92+
@gin.configurable(denylist=['observation_shape', 'stack_size',
9393
'update_horizon', 'gamma'])
9494
class WrappedLoggedPrioritizedReplayBuffer(
9595
circular_replay_buffer.WrappedReplayBuffer):

batch_rl/baselines/replay_memory/logged_replay_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def log_final_buffer(self):
8888
self.add_count = add_count
8989

9090

91-
@gin.configurable(blacklist=['observation_shape', 'stack_size',
91+
@gin.configurable(denylist=['observation_shape', 'stack_size',
9292
'update_horizon', 'gamma'])
9393
class WrappedLoggedReplayBuffer(circular_replay_buffer.WrappedReplayBuffer):
9494
"""Wrapper of OutOfGraphLoggedReplayBuffer with an in graph sampling mechanism."""

batch_rl/fixed_replay/replay_memory/fixed_replay_buffer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ def add(self, *args, **kwargs): # pylint: disable=unused-argument
131131
pass
132132

133133

134-
@gin.configurable(blacklist=['observation_shape', 'stack_size',
134+
@gin.configurable(denylist=['observation_shape', 'stack_size',
135135
'update_horizon', 'gamma'])
136136
class WrappedFixedReplayBuffer(circular_replay_buffer.WrappedReplayBuffer):
137137
"""Wrapper of OutOfGraphReplayBuffer with an in graph sampling mechanism."""

0 commit comments

Comments
 (0)