import torch def apply_white_noise(x): return x + 0.005 * torch.randn_like(x)