Merge pull request #46 from izam-mohammed/main

Updated conv.py
This commit is contained in:
Shahul ES 2023-02-08 16:40:35 +05:30 committed by GitHub
commit 7133670252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class ComplexConvTranspose2d(nn.Module):
imag_real = self.real_conv(imag)
real = real_real - imag_imag
imag = real_imag - imag_real
imag = real_imag + imag_real
out = torch.cat([real, imag], 1)