Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
resize_image_with_crop_or_pad
Function · 0.85
Calls
3
minimum
Method · 0.80
_is_tensor
Function · 0.70
min
Function · 0.50
Tested by
no test coverage detected