Skip to content

Commit f49a07f

Browse files
committed
feat: remove print statement
1 parent 11b53a4 commit f49a07f

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

vqgan_jax/modeling_flax_vqgan.py

-2
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,6 @@ def setup(self):
399399
- 1]
400400
curr_res = self.config.resolution // 2**(self.config.num_resolutions - 1)
401401
self.z_shape = (1, self.config.z_channels, curr_res, curr_res)
402-
print("Working with z of shape {} = {} dimensions.".format(
403-
self.z_shape, np.prod(self.z_shape)))
404402

405403
# z to block_in
406404
self.conv_in = nn.Conv(

0 commit comments

Comments
 (0)