Update iris/src/models/nets.py
Browse files- iris/src/models/nets.py +1 -1
iris/src/models/nets.py
CHANGED
|
@@ -102,7 +102,7 @@ class Decoder(nn.Module):
|
|
| 102 |
in_ch_mult = (1,) + tuple(config["ch_mult"])
|
| 103 |
block_in = config["ch"] * config["ch_mult"][self.num_resolutions - 1]
|
| 104 |
curr_res = config["resolution"] // 2 ** (self.num_resolutions - 1)
|
| 105 |
-
print(f"Tokenizer : shape of latent is {config[
|
| 106 |
|
| 107 |
# z to block_in
|
| 108 |
self.conv_in = torch.nn.Conv2d(config["z_channels"],
|
|
|
|
| 102 |
in_ch_mult = (1,) + tuple(config["ch_mult"])
|
| 103 |
block_in = config["ch"] * config["ch_mult"][self.num_resolutions - 1]
|
| 104 |
curr_res = config["resolution"] // 2 ** (self.num_resolutions - 1)
|
| 105 |
+
print(f"Tokenizer : shape of latent is {config['z_channels'], curr_res, curr_res}.")
|
| 106 |
|
| 107 |
# z to block_in
|
| 108 |
self.conv_in = torch.nn.Conv2d(config["z_channels"],
|