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

Function min_

tensorflow/python/ops/image_ops_impl.py:959–963  ·  view source on GitHub ↗
(x, y)

Source from the content-addressed store, hash-verified

957 return max(x, y)
958
959 def min_(x, y):
960 if _is_tensor(x) or _is_tensor(y):
961 return math_ops.minimum(x, y)
962 else:
963 return min(x, y)
964
965 def equal_(x, y):
966 if _is_tensor(x) or _is_tensor(y):

Callers 1

Calls 3

minimumMethod · 0.80
_is_tensorFunction · 0.70
minFunction · 0.50

Tested by

no test coverage detected