(self, x1, x2)
| 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)) |
no outgoing calls
no test coverage detected