You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Sums the product of the elements of the input operands along dimensions specified using a notation based on the Einstein summation convention.
2101
+
/// </summary>
2102
+
/// <param name="equation">The subscripts for the Einstein summation.</param>
2103
+
/// <param name="tensors">The operands to compute the Einstein sum of.</param>
2104
+
/// <remarks>
2105
+
/// Einsum allows computing many common multi-dimensional linear algebraic array operations by representing them in a short-hand format based on the
2106
+
/// Einstein summation convention, given by equation.The details of this format are described below, but the general idea is to label every dimension
2107
+
/// of the input operands with some subscript and define which subscripts are part of the output. The output is then computed by summing the product
2108
+
/// of the elements of the operands along the dimensions whose subscripts are not part of the output.For example, matrix multiplication can be computed
2109
+
/// using einsum as torch.einsum(“ij,jk->ik”, A, B). Here, j is the summation subscript and i and k the output subscripts(see section below for more details on why).
0 commit comments