operate

fun StructureND<T>.operate(other: StructureND<T>, operation: (left: Operand<TT>, right: Operand<TT>) -> Operand<TT>): TensorFlowOutput<T, TT>

Perform binary lazy operation on tensor. Both arguments are implicitly converted


fun T.operate(other: StructureND<T>, operation: (left: Operand<TT>, right: Operand<TT>) -> Operand<TT>): TensorFlowOutput<T, TT>
fun StructureND<T>.operate(value: T, operation: (left: Operand<TT>, right: Operand<TT>) -> Operand<TT>): TensorFlowOutput<T, TT>
fun StructureND<T>.operate(operation: (Operand<TT>) -> Operand<TT>): TensorFlowOutput<T, TT>