See functional.select.
(self, dim, index)
| 508 | return split(self, split_size_or_sections, dim) |
| 509 | |
| 510 | def select(self, dim, index): |
| 511 | ''' |
| 512 | See functional.select. |
| 513 | ''' |
| 514 | return select(self, dim, index) |
| 515 | |
| 516 | def unbind(self, dim=0): |
| 517 | ''' |