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

Method forward

models/msdnet_ge.py:215–220  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

213 self.m = nn.ModuleList(parallel_modules)
214
215 def forward(self, x):
216 res = []
217 for i in range(len(x)):
218 res.append(self.m[i](x[i]))
219
220 return res
221
222
223class ClassifierModule(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected