Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rllib/algorithms/impala/impala.py
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ def validate(self) -> None:
and self.minibatch_size <= self.total_train_batch_size
):
self._value_error(
f"`minibatch_size` ({self._minibatch_size}) must either be None "
f"`minibatch_size` ({self.minibatch_size}) must either be None "
"or a multiple of `rollout_fragment_length` "
f"({self.rollout_fragment_length}) while at the same time smaller "
"than or equal to `total_train_batch_size` "
Expand Down