MCPcopy Create free account
hub / github.com/deeplearning-wisc/MOOD / forward

Method forward

models/msdnet.py:188–193  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

186 self.m = nn.ModuleList(parallel_modules)
187
188 def forward(self, x):
189 res = []
190 for i in range(len(x)):
191 res.append(self.m[i](x[i]))
192
193 return res
194
195
196class ClassifierModule(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected