diff --git a/rllib/examples/rl_modules/classes/action_masking_rlm.py b/rllib/examples/rl_modules/classes/action_masking_rlm.py index 992802ebb13a0..439d938946393 100644 --- a/rllib/examples/rl_modules/classes/action_masking_rlm.py +++ b/rllib/examples/rl_modules/classes/action_masking_rlm.py @@ -106,7 +106,7 @@ def compute_values(self, batch: Dict[str, TensorType], embeddings=None): # to the batch to access them in `_forward_train`. batch["action_mask"] = action_mask # Call the super's method to compute values for GAE. - return super().compute_values(batch, embeddings) + return super().compute_values(batch) def _preprocess_batch( self, batch: Dict[str, TensorType], **kwargs