(self, tensors, axis=0)
| 336 | return self.g.concat(self, other, axis=axis) |
| 337 | |
| 338 | def cat(self, tensors, axis=0): |
| 339 | return self.g.cat([self] + tensors, axis=axis) |
| 340 | |
| 341 | def group_norm(self, normalized_shape, eps=1e-5): |
| 342 | return self.g.group_norm(self, normalized_shape, eps) |