Browse Source

Increase noise stddev

master
Mattéo Delabre 4 years ago
parent
commit
8a31b22b83
Signed by: matteo GPG Key ID: AE3FBD02DC583ABB
  1. 2
      constellation/GaussianChannel.py

2
constellation/GaussianChannel.py

@ -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)

Loading…
Cancel
Save