Calculates:
output = input - other * alpha Copy
output = input - other * alpha
Gradient:
inputGrad = outputGrad; otherGrad = -outputGrad Copy
inputGrad = outputGrad; otherGrad = -outputGrad
the input tensor of any shape
the other tensor whose shape is broadcastable with the input tensor
Optional
the alpha value to multiply other with
other
the output tensor
Generated using TypeDoc
Calculates:
Gradient: