You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
else: A = self.A.cuda(x.get_device()) * self.mask for i inrange(self.num_subset): A1 = A[i] A2 = x.view(N, C * T, V) z = self.conv_d[i](torch.matmul(A2, A1).view(N, C, T, V)) y = z + y if y is not None else z
The text was updated successfully, but these errors were encountered:
在aagcn文件中,当我打算复现A-STGCN-STC时,报了self.mask没有定义的错误,我看了下代码,确实是没有定义这个变量,不知道这个变量的作用是什么,应该在哪里先定义或者传参尽量呢?
else: A = self.A.cuda(x.get_device()) * self.mask for i in
range(self.num_subset):A1 = A[i] A2 = x.view(N, C * T, V) z = self.conv_d[i](torch.matmul(A2, A1).view(N, C, T, V)) y = z + y if y is not None else z
The text was updated successfully, but these errors were encountered: