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

Method __init__

model/visualEncoder.py:149–154  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

147
148class visualTCN(nn.Module):
149 def __init__(self):
150 super(visualTCN, self).__init__()
151 stacks = []
152 for x in range(5):
153 stacks += [DSConv1d()]
154 self.net = nn.Sequential(*stacks) # Visual Temporal Network V-TCN
155
156 def forward(self, x):
157 out = self.net(x)

Callers

nothing calls this directly

Calls 2

DSConv1dClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected