We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
So we could write
TFOutput result = 2.0; result += 42.0 * g.Abs(x)));
instead of
TFOutput result = g.Const(2.0); result = g.Add(result, g.Mul(g.Const(42.0), g.Abs(x)));
In which g is of type TFGraph , and x of type TFOutput and both come from some where else in the graph/code.
g
TFGraph
x
TFOutput