提交 7f25e754 authored 作者: Frederic's avatar Frederic

replace T. by tensor.

上级 56eb0c95
...@@ -5074,8 +5074,8 @@ def batched_dot(x, y): ...@@ -5074,8 +5074,8 @@ def batched_dot(x, y):
iterating over the first dimension using scan. iterating over the first dimension using scan.
Returns a tensor of size e.g. if it is 3D: (dim1, dim3, dim4) Returns a tensor of size e.g. if it is 3D: (dim1, dim3, dim4)
Example: Example:
>>> first = T.tensor3('first') >>> first = tensor.tensor3('first')
>>> second = T.tensor3('second') >>> second = tensor.tensor3('second')
>>> result = batched_dot(first, second) >>> result = batched_dot(first, second)
:note: This is a subset of numpy.einsum, but we do not provide it for now. :note: This is a subset of numpy.einsum, but we do not provide it for now.
But numpy einsum is slower than dot or tensordot: But numpy einsum is slower than dot or tensordot:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论