Skip to content

Commit

Permalink
add size to layernorm
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Dec 7, 2023
1 parent 8c54d37 commit 268521a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def __init__(self,
ch *= 2
size = int(size / 2)
self.conv = ConvBlock(ch, ch * 2, dropout_rate, use_tanh, use_layer_norm, size)
size = size/2
size = int( size / 2)

self.up_conv = nn.ModuleList()
self.up_transpose_conv = nn.ModuleList()
Expand Down

0 comments on commit 268521a

Please sign in to comment.