Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
priyakasimbeg committed Dec 8, 2023
1 parent a00a031 commit 95e85bf
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ def __call__(self, x, train=True):
output = jnp.concatenate((output, downsample_layer), axis=-1)
output = conv(output, train)

output = nn.Conv(self.out_channels, kernel_size=(1, 1), strides=(1, 1))(output)
output = nn.Conv(
self.out_channels, kernel_size=(1, 1), strides=(1, 1))(
output)
return output.squeeze(-1)


Expand Down

0 comments on commit 95e85bf

Please sign in to comment.