MCPcopy Create free account
hub / github.com/TeleHuman/PBHC / __init__

Method __init__

humanoidverse/agents/modules/ppo_modules.py:83–88  ·  view source on GitHub ↗
(self,
                obs_dim_dict,
                module_config_dict)

Source from the content-addressed store, hash-verified

81
82class PPOCritic(nn.Module):
83 def __init__(self,
84 obs_dim_dict,
85 module_config_dict):
86 super(PPOCritic, self).__init__()
87
88 self.critic_module = BaseModule(obs_dim_dict, module_config_dict)
89
90 @property
91 def critic(self):

Callers

nothing calls this directly

Calls 2

BaseModuleClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected