快捷方式

StepCounter

class torchrl.envs.transforms.StepCounter(max_steps: Optional[int] = None, truncated_key: str | None = 'truncated', step_count_key: str | None = 'step_count', update_done: bool = True)[源代码]

计算从重置开始的步数,并在达到一定步数后可选地将截断状态设置为 True

"done" 状态也会相应地进行调整(因为 done 是任务完成和提前截断的析取)。

参数:
  • max_steps (int, 可选) – 一个正整数,指示在将 truncated_key 条目设置为 True 之前要执行的最大步数。

  • truncated_key (str, 可选) – 应写入截断条目的键。默认为 "truncated",数据收集器将其识别为重置信号。此参数只能是字符串(而不是嵌套键),因为它将与父环境中的每个叶子 done 键匹配(例如,如果使用 "truncated" 键名,则 ("agent", "done") 键将伴随 ("agent", "truncated"))。

  • step_count_key (str, 可选) – 应写入步数条目的键。默认为 "step_count"。此参数只能是字符串(而不是嵌套键),因为它将与父环境中的每个叶子 done 键匹配(例如,如果使用 "step_count" 键名,则 ("agent", "done") 键将伴随 ("agent", "step_count"))。

  • update_done (bool, 可选) – 如果为 True,则将更新 "truncated" 级别上的 "done" 布尔张量。此信号表示轨迹已达到其结束,原因可能是任务已完成("completed" 条目为 True)或已截断("truncated" 条目为 True)。默认为 True

注意

为了确保与具有多个 done_key 的环境的兼容性,此转换将为 tensordict 中的每个 done 条目写入一个 step_count 条目。

示例

>>> import gymnasium
>>> from torchrl.envs import GymWrapper
>>> base_env = GymWrapper(gymnasium.make("Pendulum-v1"))
>>> env = TransformedEnv(base_env,
...     StepCounter(max_steps=5))
>>> rollout = env.rollout(100)
>>> print(rollout)
TensorDict(
    fields={
        action: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.float32, is_shared=False),
        done: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False),
        completed: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)},
        next: TensorDict(
            fields={
                done: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False),
                completed: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)},
                observation: Tensor(shape=torch.Size([5, 3]), device=cpu, dtype=torch.float32, is_shared=False),
                reward: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.float32, is_shared=False),
                step_count: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.int64, is_shared=False),
                truncated: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)},
            batch_size=torch.Size([5]),
            device=cpu,
            is_shared=False),
        observation: Tensor(shape=torch.Size([5, 3]), device=cpu, dtype=torch.float32, is_shared=False),
        step_count: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.int64, is_shared=False),
        truncated: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)},
    batch_size=torch.Size([5]),
    device=cpu,
    is_shared=False)
>>> print(rollout["next", "step_count"])
tensor([[1],
        [2],
        [3],
        [4],
        [5]])
forward(tensordict: TensorDictBase) TensorDictBase[源代码]

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

transform_input_spec(input_spec: CompositeSpec) CompositeSpec[源代码]

转换输入规范,以便生成的规范与转换映射匹配。

参数:

input_spec (TensorSpec) – 转换前的规范

返回值:

转换后的预期规范

transform_observation_spec(observation_spec: CompositeSpec) CompositeSpec[源代码]

转换观察规范,以便生成的规范与转换映射匹配。

参数:

observation_spec (TensorSpec) – 转换前的规范

返回值:

转换后的预期规范

transform_output_spec(output_spec: CompositeSpec) CompositeSpec[source]

转换输出规范,使其结果规范与转换映射匹配。

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

返回值:

转换后的预期规范

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取适合初学者和高级开发人员的深入教程

查看教程

资源

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

查看资源