MCPcopy Create free account
hub / github.com/JunlinHan/DCLGAN / forward

Method forward

models/networks.py:513–517  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

511 self.l2norm = Normalize(2)
512
513 def forward(self, x):
514 x = x.view(1, -1, self.patch_num, self.nc)
515 x = self.model(x)
516 x_norm = self.l2norm(x)
517 return x_norm
518
519
520class StridedConvF(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected