Increase noise stddev

This commit is contained in:
Mattéo Delabre 2019-12-15 01:21:11 -05:00
parent 04c2938b9e
commit 8a31b22b83
Signed by: matteo
GPG Key ID: AE3FBD02DC583ABB
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ def Channel_Noise_Model(NV, S):
through a channel.
"""
return torch.distributions.normal.Normal(
0, torch.sqrt(NV*5000)
0, torch.sqrt(NV*10000)
).sample(S)