MCPcopy Create free account
hub / github.com/XLearning-SCU/2022-CVPR-DART / forward

Method forward

model.py:102–107  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

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
110class thermal_module(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected