MCPcopy Create free account
hub / github.com/PythonOT/POT / min

Method min

ot/backend.py:1597–1598  ·  view source on GitHub ↗
(self, a, axis=None, keepdims=False)

Source from the content-addressed store, hash-verified

1595 return jnp.max(a, axis, keepdims=keepdims)
1596
1597 def min(self, a, axis=None, keepdims=False):
1598 return jnp.min(a, axis, keepdims=keepdims)
1599
1600 def maximum(self, a, b):
1601 return jnp.maximum(a, b)

Callers

nothing calls this directly

Calls 1

minMethod · 0.45

Tested by

no test coverage detected