Skip to content

Commit

Permalink
feat: remove print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
borisdayma committed Mar 24, 2022
1 parent 11b53a4 commit f49a07f
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions vqgan_jax/modeling_flax_vqgan.py
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,6 @@ def setup(self):
- 1]
curr_res = self.config.resolution // 2**(self.config.num_resolutions - 1)
self.z_shape = (1, self.config.z_channels, curr_res, curr_res)
print("Working with z of shape {} = {} dimensions.".format(
self.z_shape, np.prod(self.z_shape)))

# z to block_in
self.conv_in = nn.Conv(
Expand Down

0 comments on commit f49a07f

Please sign in to comment.