We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e4424e commit 4a985daCopy full SHA for 4a985da
monai/inferers/inferer.py
@@ -1211,10 +1211,7 @@ def sample( # type: ignore[override]
1211
decode = autoencoder_model.decode_stage_2_outputs
1212
if isinstance(autoencoder_model, SPADEAutoencoderKL):
1213
decode = partial(autoencoder_model.decode_stage_2_outputs, seg=seg)
1214
- print("Decoding latents...")
1215
- print(latent.shape)
1216
image = decode(latent / self.scale_factor)
1217
- print(image.shape)
1218
if save_intermediates:
1219
intermediates = []
1220
for latent_intermediate in latent_intermediates:
0 commit comments