ray.rllib.utils.replay_buffers.prioritized_replay_buffer.PrioritizedReplayBuffer.add#

PrioritizedReplayBuffer.add(batch: SampleBatch | MultiAgentBatch, **kwargs) None#

Adds a batch of experiences or other data to this buffer.

Splits batch into chunks of timesteps, sequences or episodes, depending on self._storage_unit. Calls self._add_single_batch to add resulting slices to the buffer storage.

Parameters:
  • batch – The batch to add.

  • **kwargs – Forward compatibility kwargs.