MCPcopy Create free account
hub / github.com/TaoRuijie/TalkNet-ASD / forward

Method forward

model/visualEncoder.py:74–80  ·  view source on GitHub ↗
(self, inputBatch)

Source from the content-addressed store, hash-verified

72
73
74 def forward(self, inputBatch):
75 batch = self.layer1(inputBatch)
76 batch = self.layer2(batch)
77 batch = self.layer3(batch)
78 batch = self.layer4(batch)
79 outputBatch = self.avgpool(batch)
80 return outputBatch
81
82
83class GlobalLayerNorm(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected