MCPcopy Create free account
hub / github.com/cvg/NoPoSplat / forward

Method forward

src/model/encoder/heads/head_modules.py:112–116  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

110 self.outputs08 = nn.ModuleList(output_list)
111
112 def forward(self, x):
113 feat1, feat2 = self.conv2(x).split(dim=0, split_size=x.shape[0] // 2)
114
115 outputs08 = [f(x) for f in self.outputs08]
116 return outputs08, feat1, feat2
117
118
119if __name__ == '__main__':

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected