(self)
| 86 | |
| 87 | @property |
| 88 | def shape(self): |
| 89 | if not hasattr(self, "tensor_shape"): |
| 90 | self.tensor_shape = self.size() |
| 91 | return self.tensor_shape |
| 92 | |
| 93 | class GGMLLayer(torch.nn.Module): |
| 94 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected