(self, coords)
| 768 | self.net[-1][0].bias.data = set_bias * torch.ones_like(self.net[-1][0].bias.data) |
| 769 | |
| 770 | def forward(self, coords): |
| 771 | output = self.net(coords) |
| 772 | return output |
| 773 | |
| 774 | |
| 775 | class RadianceNet(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected