MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / _MinimumGrad

Function _MinimumGrad

tensorflow/python/ops/math_grad.py:1443–1445  ·  view source on GitHub ↗

Returns grad*(x < y, x >= y) with type of grad.

(op, grad)

Source from the content-addressed store, hash-verified

1441
1442@ops.RegisterGradient("Minimum")
1443def _MinimumGrad(op, grad):
1444 """Returns grad*(x < y, x >= y) with type of grad."""
1445 return _MaximumMinimumGrad(op, grad, math_ops.less_equal)
1446
1447
1448@ops.RegisterGradient("SquaredDifference")

Callers

nothing calls this directly

Calls 1

_MaximumMinimumGradFunction · 0.85

Tested by

no test coverage detected