提交 e527643a authored 作者: Tim Cooijmans's avatar Tim Cooijmans

BatchedDot: remove reference to Dot

上级 878633ed
...@@ -3727,8 +3727,8 @@ class BatchedDot(Op): ...@@ -3727,8 +3727,8 @@ class BatchedDot(Op):
return xgrad, ygrad return xgrad, ygrad
def R_op(self, inputs, eval_points): def R_op(self, inputs, eval_points):
# R_op for a \dot b evaluted at c for a and d for b is # R_op for batched_dot(a, b) evaluted at c for a and d for b is
# simply c \dot b + a \dot d # simply batched_dot(c, b) + batched_dot(a, d)
assert len(inputs) == 2 assert len(inputs) == 2
assert len(eval_points) == 2 assert len(eval_points) == 2
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论