(self, x)
| 260 | self.register_parameter('variance', nn.Parameter(torch.tensor(init_val))) |
| 261 | |
| 262 | def forward(self, x): |
| 263 | return torch.ones([len(x), 1]) * torch.exp(self.variance * 10.0) |
nothing calls this directly
no outgoing calls
no test coverage detected