浏览代码

Fix typo

/gc-hyper
Arthur Juliani 4 年前
当前提交
f36b10d8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      ml-agents/mlagents/trainers/torch/distributions.py

2
ml-agents/mlagents/trainers/torch/distributions.py


)
def forward(self, inputs: torch.Tensor, goal: torch.Tensor):
mu = self.mu(inputs, goal)
mu = self.hypernet(inputs, goal)
if self.conditional_sigma:
log_sigma = torch.clamp(self.log_sigma(inputs), min=-20, max=2)
else:

正在加载...
取消
保存