From 8a31b22b83a3978a3d8b8a3ba6b43d8b4114cc72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Sun, 15 Dec 2019 01:21:11 -0500 Subject: [PATCH] Increase noise stddev --- constellation/GaussianChannel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constellation/GaussianChannel.py b/constellation/GaussianChannel.py index ab37672..af2425b 100644 --- a/constellation/GaussianChannel.py +++ b/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)