Skip to content

Commit

Permalink
fix shouldn't normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
xir4n committed Oct 24, 2024
1 parent 9da8628 commit 758378a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions murenn/dtcwt/nn.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,5 @@ def __init__(self, J_phi):
def forward(self, x):
for j in range(self.J_phi):
x, _ = self.phi(x)
# Normalize the coefficients
x = x[:,:,::2] / math.sqrt(2)
x = x[:,:,::2]
return x

0 comments on commit 758378a

Please sign in to comment.