Returns a NumPy array specifying the maximum bounds (inclusive).
(self)
| 266 | |
| 267 | @property |
| 268 | def maximum(self): |
| 269 | """Returns a NumPy array specifying the maximum bounds (inclusive).""" |
| 270 | return self._maximum |
| 271 | |
| 272 | def __repr__(self): |
| 273 | s = "BoundedTensorSpec(shape={}, dtype={}, name={}, minimum={}, maximum={})" |
no outgoing calls