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

Method forward

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

Source from the content-addressed store, hash-verified

117 self.thermal = model_t
118
119 def forward(self, x):
120 x = self.thermal.conv1(x)
121 x = self.thermal.bn1(x)
122 x = self.thermal.relu(x)
123 x = self.thermal.maxpool(x)
124 return x
125
126
127class base_resnet(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected