(self, x)
| 100 | self.visible = model_v |
| 101 | |
| 102 | def forward(self, x): |
| 103 | x = self.visible.conv1(x) |
| 104 | x = self.visible.bn1(x) |
| 105 | x = self.visible.relu(x) |
| 106 | x = self.visible.maxpool(x) |
| 107 | return x |
| 108 | |
| 109 | |
| 110 | class thermal_module(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected