MCPcopy Create free account
hub / github.com/Sin3DM/Sin3DM / forward

Method forward

evaluation/lpips.py:32–38  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

30 self.channels.append(layer.out_channels)
31
32 def forward(self, x):
33 fmaps = []
34 for layer in self.layers:
35 x = layer(x)
36 if isinstance(layer, nn.ReLU):
37 fmaps.append(x)
38 return fmaps
39
40
41class Conv1x1(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected