Reduce min the input tensor along the given dim. Parameters ---------- input : Tensor The input tensor. dim : int The reduce dim. Returns ------- Tensor A framework-specific tensor.
(input, dim)
| 513 | |
| 514 | |
| 515 | def min(input, dim): |
| 516 | """Reduce min the input tensor along the given dim. |
| 517 | |
| 518 | Parameters |
| 519 | ---------- |
| 520 | input : Tensor |
| 521 | The input tensor. |
| 522 | dim : int |
| 523 | The reduce dim. |
| 524 | |
| 525 | Returns |
| 526 | ------- |
| 527 | Tensor |
| 528 | A framework-specific tensor. |
| 529 | """ |
| 530 | pass |
| 531 | |
| 532 | |
| 533 | def reduce_min(input): |
no outgoing calls