MCPcopy Create free account
hub / github.com/DingLei14/WiCoNet / forward

Method forward

models/WiCoNet.py:104–108  ·  view source on GitHub ↗
(self, x1, x2)

Source from the content-addressed store, hash-verified

102 self.layer.append(layer)
103
104 def forward(self, x1, x2):
105 for layer_block in self.layer:
106 x1 = layer_block(x1, x2)
107 encoded = self.encoder_norm(x1)
108 return encoded
109
110
111class Attention(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected