MeltingpotWrapper¶
- torchrl.envs.MeltingpotWrapper(*args, **kwargs)[原始碼]¶
Meltingpot 環境包裝器。
GitHub: https://github.com/google-deepmind/meltingpot
論文: https://arxiv.org/abs/2211.13746
Melting Pot 評估了對涉及熟悉和不熟悉個體的全新社交情境的泛化能力,旨在測試廣泛的社互動動,例如:合作、競爭、欺騙、互惠、信任、固執等。Melting Pot 為研究人員提供了一套超過 50 種的多智慧體強化學習基底(multi-agent games),可在其上訓練智慧體,以及超過 256 個獨特的測試場景,可在其上評估這些訓練好的智慧體。
- 引數:
env (
meltingpot.utils.substrates.substrate.Substrate) – 要包裝的 Meltingpot 基底。- 關鍵字引數:
max_steps (int, optional) – 任務的 horizon。預設為
None(無限 horizon)。每個 Meltingpot 基底可以是終止的或非終止的。如果指定了max_steps,則每當達到此 horizon 時,場景也會終止(並設定"terminated"標誌)。與 gym 的TimeLimit轉換或 torchrl 的StepCounter不同,此引數不會在 tensordict 中設定"truncated"條目。categorical_actions (bool, optional) – 如果環境動作是離散的,是否將其轉換為 categorical 或 one-hot。預設為
True。group_map (MarlGroupMapType or Dict[str, List[str]], optional) – 如何在 tensordict 中對智慧體進行輸入/輸出分組。預設情況下,它們都將放在一個名為
"agents"的組中。否則,可以指定組對映或從一些預設選項中選擇。更多資訊請參閱MarlGroupMapType。
- 變數:
group_map (Dict[str, List[str]]) – 如何在 tensordict 中對智慧體進行輸入/輸出分組。更多資訊請參閱
MarlGroupMapType。agent_names (list of str) – 環境中智慧體的名稱
agent_names_to_indices_map (Dict[str, int]) – 將智慧體名稱對映到其在環境中索引的字典
available_envs (List[str]) – 可用於構建的場景列表。
警告
Meltingpot 返回一個單獨的
done標誌,該標誌不區分環境何時達到max_steps和終止。如果你認為truncation訊號是必要的,請將max_steps設定為None並使用StepCounter轉換。示例
>>> from meltingpot import substrate >>> from torchrl.envs.libs.meltingpot import MeltingpotWrapper >>> substrate_config = substrate.get_config("commons_harvest__open") >>> mp_env = substrate.build_from_config( ... substrate_config, roles=substrate_config.default_player_roles ... ) >>> env_torchrl = MeltingpotWrapper(env=mp_env) >>> print(env_torchrl.rollout(max_steps=5)) TensorDict( fields={ RGB: Tensor(shape=torch.Size([5, 144, 192, 3]), device=cpu, dtype=torch.uint8, is_shared=False), agents: TensorDict( fields={ action: Tensor(shape=torch.Size([5, 7]), device=cpu, dtype=torch.int64, is_shared=False), observation: TensorDict( fields={ COLLECTIVE_REWARD: Tensor(shape=torch.Size([5, 7, 1]), device=cpu, dtype=torch.float64, is_shared=False), READY_TO_SHOOT: Tensor(shape=torch.Size([5, 7, 1]), device=cpu, dtype=torch.float64, is_shared=False), RGB: Tensor(shape=torch.Size([5, 7, 88, 88, 3]), device=cpu, dtype=torch.uint8, is_shared=False)}, batch_size=torch.Size([5, 7]), device=cpu, is_shared=False)}, batch_size=torch.Size([5, 7]), device=cpu, is_shared=False), done: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False), next: TensorDict( fields={ RGB: Tensor(shape=torch.Size([5, 144, 192, 3]), device=cpu, dtype=torch.uint8, is_shared=False), agents: TensorDict( fields={ observation: TensorDict( fields={ COLLECTIVE_REWARD: Tensor(shape=torch.Size([5, 7, 1]), device=cpu, dtype=torch.float64, is_shared=False), READY_TO_SHOOT: Tensor(shape=torch.Size([5, 7, 1]), device=cpu, dtype=torch.float64, is_shared=False), RGB: Tensor(shape=torch.Size([5, 7, 88, 88, 3]), device=cpu, dtype=torch.uint8, is_shared=False)}, batch_size=torch.Size([5, 7]), device=cpu, is_shared=False), reward: Tensor(shape=torch.Size([5, 7, 1]), device=cpu, dtype=torch.float64, is_shared=False)}, batch_size=torch.Size([5, 7]), device=cpu, is_shared=False), done: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False), terminated: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)}, batch_size=torch.Size([5]), device=cpu, is_shared=False), terminated: Tensor(shape=torch.Size([5, 1]), device=cpu, dtype=torch.bool, is_shared=False)}, batch_size=torch.Size([5]), device=cpu, is_shared=False)