浏览代码

Fix bug in pdf function

/develop/add-fire
Arthur Juliani 4 年前
当前提交
6408fd4e
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 2
      ml-agents/mlagents/trainers/distributions_torch.py

2
ml-agents/mlagents/trainers/distributions_torch.py


return torch.multinomial(self.probs, 1)
def pdf(self, value):
return self.probs[:, value]
return torch.diag(self.probs.T[value.flatten()])
def log_prob(self, value):
return torch.log(self.pdf(value))

正在加载...
取消
保存