(self, start_dim=0, end_dim=-1)
| 330 | return self.g.view(self, shape) |
| 331 | |
| 332 | def flatten(self, start_dim=0, end_dim=-1): |
| 333 | return self.g.flatten(self, start_dim=start_dim, end_dim=end_dim) |
| 334 | |
| 335 | def concat(self, other, axis=0): |
| 336 | return self.g.concat(self, other, axis=axis) |