HSIGene / vae /utils.py
BiliSakura's picture
Add files using upload-large-folder tool
66a2b45 verified
raw
history blame contribute delete
211 Bytes
"""VAE utilities."""
import torch.nn as nn
def zero_module(module):
"""Zero out the parameters of a module and return it."""
for p in module.parameters():
p.detach().zero_()
return module