(self, xr, xi)
| 276 | self.Wii.data.fill_(1) |
| 277 | |
| 278 | def _check_input_dim(self, xr, xi): |
| 279 | assert(xr.shape == xi.shape) |
| 280 | assert(xr.size(1) == self.num_features) |
| 281 | |
| 282 | def forward(self, inputs): |
| 283 | #self._check_input_dim(xr, xi) |
nothing calls this directly
no outgoing calls
no test coverage detected