快捷方式

RenameTransform

class torchrl.envs.transforms.RenameTransform(in_keys, out_keys, in_keys_inv=None, out_keys_inv=None, create_copy=False)[source]

一个用于重命名输出 tensordict (或通过逆向键重命名输入 tensordict) 中条目的变换。

参数:
  • in_keys (sequence of NestedKey) – 待重命名的条目。

  • out_keys (sequence of NestedKey) – 重命名后的条目名称。

  • in_keys_inv (sequence of NestedKey, optional) – 在输入 tensordict 中待重命名的条目,这些条目将传递给 EnvBase._step()

  • out_keys_inv (sequence of NestedKey, optional) – 在输入 tensordict 中重命名后的条目名称。

  • create_copy (bool, optional) – 如果为 True,则将条目复制一份并使用不同的名称,而不是直接重命名。这允许重命名不可变条目,如 "reward""done"

示例

>>> from torchrl.envs.libs.gym import GymEnv
>>> env = TransformedEnv(
...     GymEnv("Pendulum-v1"),
...     RenameTransform(["observation", ], ["stuff",], create_copy=False),
... )
>>> tensordict = env.rollout(3)
>>> print(tensordict)
TensorDict(
    fields={
        action: Tensor(shape=torch.Size([3, 1]), device=cpu, dtype=torch.float32, is_shared=False),
        done: Tensor(shape=torch.Size([3, 1]), device=cpu, dtype=torch.bool, is_shared=False),
        next: TensorDict(
            fields={
                done: Tensor(shape=torch.Size([3, 1]), device=cpu, dtype=torch.bool, is_shared=False),
                reward: Tensor(shape=torch.Size([3, 1]), device=cpu, dtype=torch.float32, is_shared=False),
                stuff: Tensor(shape=torch.Size([3, 3]), device=cpu, dtype=torch.float32, is_shared=False)},
            batch_size=torch.Size([3]),
            device=cpu,
            is_shared=False),
        stuff: Tensor(shape=torch.Size([3, 3]), device=cpu, dtype=torch.float32, is_shared=False)},
    batch_size=torch.Size([3]),
    device=cpu,
    is_shared=False)
>>> # if the output is also an input, we need to rename if both ways:
>>> from torchrl.envs.libs.brax import BraxEnv
>>> env = TransformedEnv(
...     BraxEnv("fast"),
...     RenameTransform(["state"], ["newname"], ["state"], ["newname"])
... )
>>> _ = env.set_seed(1)
>>> tensordict = env.rollout(3)
>>> assert "newname" in tensordict.keys()
>>> assert "state" not in tensordict.keys()
forward(tensordict: TensorDictBase) TensorDictBase

读取输入 tensordict,并对选定的键应用变换。

transform_input_spec(input_spec: Composite) Composite[source]

变换输入规格,使得到的规格与变换映射匹配。

参数:

input_spec (TensorSpec) – 变换前的规格

返回值:

变换后预期的规格

transform_output_spec(output_spec: Composite) Composite[source]

变换输出规格,使得到的规格与变换映射匹配。

此方法通常应保持不变。修改应使用 transform_observation_spec(), transform_reward_spec()transform_full_done_spec() 实现。:param output_spec: 变换前的规格 :type output_spec: TensorSpec

返回值:

变换后预期的规格

文档

访问 PyTorch 的完整开发者文档

查看文档

教程

获取面向初学者和高级开发者的深度教程

查看教程

资源

查找开发资源并获得问题解答

查看资源