MCPcopy Create free account
hub / github.com/drinkingcoder/FlowFormer-Official / forward

Method forward

core/extractor.py:48–56  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

46
47
48 def forward(self, x):
49 y = x
50 y = self.relu(self.norm1(self.conv1(y)))
51 y = self.relu(self.norm2(self.conv2(y)))
52
53 if self.downsample is not None:
54 x = self.downsample(x)
55
56 return self.relu(x+y)
57
58
59

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected