DeepLearning
EinsteinSummation
apply a generalized tensor contraction rule
Calling Sequence
Parameters
Options
Description
Details
Examples
Compatibility
EinsteinSummation(rule,t1,...,tn,opts)
rule
-
string; contraction rule for Tensor indices
t1,...,tn
zero or more Tensor objects to be passed to rule
opts
zero or more options as described below
name = string
The value of option name specifies an optional name for this Tensor to be displayed in output and when visualizing the dataflow graph.
The EinsteinSummation(rule,t1,...,tn,opts) command creates a Tensor in the active dataflow graph which is obtained by applying the generalized contraction rule rule to the Tensor arguments t1,...,tn.
This function is part of the DeepLearning package, so it can be used in the short form EinsteinSummation(..) only after executing the command with(DeepLearning). However, it can always be accessed through the long form of the command by using DeepLearning[EinsteinSummation](..).
The implementation of EinsteinSummation uses the tf.einsum command from the TensorFlow Python API. Consult the TensorFlow Python API documentation for tf.einsum for more information on Einstein summation and the syntax for rule specifically.
Examples of Einstein summation on vectors
Dot product
Outer product
Examples of Einstein summation on matrices
Matrix multiplication
Transpose
The DeepLearning[EinsteinSummation] command was introduced in Maple 2018.
For more information on Maple 2018 changes, see Updates in Maple 2018.
See Also
DeepLearning Overview
DifferentialGeometry,Tensor,ContractIndices
Download Help Document