tensordict.nn.distributions.Delta¶
- class tensordict.nn.distributions.Delta(param: torch.Tensor, atol: float = 1e-06, rtol: float = 1e-06, batch_shape: torch.Size | Sequence[int] | None = None, event_shape: torch.Size | Sequence[int] | None = None)¶
Delta 分布。
- 参数:
param (torch.Tensor) – Delta 分布的参数;
atol (数字, 可选) – 认为张量与分布参数匹配的绝对容差;默认为 1e-6
rtol (数字, 可选) – 认为张量与分布参数匹配的相对容差;默认为 1e-6
batch_shape (torch.Size, 可选) – 批次形状;
event_shape (torch.Size, 可选) – 结果的形状。