r""" Joins a sequence of tensors along an existing dimension. This function follows the api from :any:`numpy.concatenate` See: https://numpy.org/doc/stable/reference/generated/numpy.concatenate.html
(self, arrays, axis=0)
| 610 | raise NotImplementedError() |
| 611 | |
| 612 | def concatenate(self, arrays, axis=0): |
| 613 | r""" |
| 614 | Joins a sequence of tensors along an existing dimension. |
| 615 | |
| 616 | This function follows the api from :any:`numpy.concatenate` |
| 617 | |
| 618 | See: https://numpy.org/doc/stable/reference/generated/numpy.concatenate.html |
| 619 | """ |
| 620 | raise NotImplementedError() |
| 621 | |
| 622 | def zero_pad(self, a, pad_width, value=0): |
| 623 | r""" |
no outgoing calls