Skip to content

Commit e830b1f

Browse files
committed
DCO Remediation Commit for YunLiu <[email protected]>
I, YunLiu <[email protected]>, hereby add my Signed-off-by to this commit: 2fc0126 Signed-off-by: YunLiu <[email protected]>
1 parent 17478b0 commit e830b1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

monai/networks/nets/autoencoderkl.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -758,7 +758,7 @@ def sampling(self, z_mu: torch.Tensor, z_sigma: torch.Tensor) -> torch.Tensor:
758758
eps = torch.randn_like(z_sigma)
759759
z_vae = z_mu + eps * z_sigma
760760
return z_vae
761-
761+
762762
def reconstruct(self, x: torch.Tensor) -> torch.Tensor:
763763
"""
764764
Encodes and decodes an input image.

0 commit comments

Comments
 (0)