LazyTensorStorage¶
- class torchrl.data.replay_buffers.LazyTensorStorage(max_size: int, *, device: device = 'cpu', ndim: int = 1, compilable: bool = False, consolidated: bool = False)[源代码]¶
一个用于存储张量和张量字典的预分配张量存储。
- 参数:
max_size (int) – 存储大小,即缓冲区中存储的最大元素数量。
- 关键字参数:
device (torch.device, optional) – 采样张量将被存储和发送到的设备。默认为
torch.device("cpu")
。如果传入“auto”,则设备会自动从传递的第一批数据中收集。此选项默认不启用,以避免数据被错误地放置在 GPU 上,导致 OOM 问题。ndim (int, optional) – 在计算存储大小时要考虑的维度数。例如,形状为
[3, 4]
的存储,如果ndim=1
,则容量为3
;如果ndim=2
,则容量为12
。默认为1
。compilable (bool, optional) – 存储是否可编译。如果为
True
,则写入器不能在多个进程之间共享。默认为False
。consolidated (bool, optional) – 如果为
True
,存储将在首次扩展后被合并。默认为False
。
示例
>>> data = TensorDict({ ... "some data": torch.randn(10, 11), ... ("some", "nested", "data"): torch.randn(10, 11, 12), ... }, batch_size=[10, 11]) >>> storage = LazyTensorStorage(100) >>> storage.set(range(10), data) >>> len(storage) # only the first dimension is considered as indexable 10 >>> storage.get(0) TensorDict( fields={ some data: Tensor(shape=torch.Size([11]), device=cpu, dtype=torch.float32, is_shared=False), some: TensorDict( fields={ nested: TensorDict( fields={ data: Tensor(shape=torch.Size([11, 12]), device=cpu, dtype=torch.float32, is_shared=False)}, batch_size=torch.Size([11]), device=cpu, is_shared=False)}, batch_size=torch.Size([11]), device=cpu, is_shared=False)}, batch_size=torch.Size([11]), device=cpu, is_shared=False) >>> storage.set(0, storage.get(0).zero_()) # zeros the data along index ``0``
此类也支持 tensorclass 数据。
示例
>>> from tensordict import tensorclass >>> @tensorclass ... class MyClass: ... foo: torch.Tensor ... bar: torch.Tensor >>> data = MyClass(foo=torch.randn(10, 11), bar=torch.randn(10, 11, 12), batch_size=[10, 11]) >>> storage = LazyTensorStorage(10) >>> storage.set(range(10), data) >>> storage.get(0) MyClass( bar=Tensor(shape=torch.Size([11, 12]), device=cpu, dtype=torch.float32, is_shared=False), foo=Tensor(shape=torch.Size([11]), device=cpu, dtype=torch.float32, is_shared=False), batch_size=torch.Size([11]), device=cpu, is_shared=False)
- attach(buffer: Any) None ¶
此函数将采样器附加到此存储。
读取此存储的缓冲区必须通过调用此方法作为附加实体包含在内。这保证了当存储中的数据发生变化时,组件会收到通知,即使存储与其他缓冲区共享(例如,优先级采样器)。
- 参数:
buffer – 读取此存储的对象。
- dump(*args, **kwargs)¶
dumps()
的别名。
- load(*args, **kwargs)¶
loads()
的别名。
- save(*args, **kwargs)¶
dumps()
的别名。