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

Method forward_audio_visual_backend

model/talkNetModel.py:51–55  ·  view source on GitHub ↗
(self, x1, x2)

Source from the content-addressed store, hash-verified

49 return x1_c, x2_c
50
51 def forward_audio_visual_backend(self, x1, x2):
52 x = torch.cat((x1,x2), 2)
53 x = self.selfAV(src = x, tar = x)
54 x = torch.reshape(x, (-1, 256))
55 return x
56
57 def forward_audio_backend(self,x):
58 x = torch.reshape(x, (-1, 128))

Callers 3

evaluate_networkFunction · 0.80
train_networkMethod · 0.80
evaluate_networkMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected