From 04c2938b9ec916be454fd8f0905f896dfeb4ca74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matt=C3=A9o=20Delabre?= Date: Sun, 15 Dec 2019 01:21:03 -0500 Subject: [PATCH] Decrease alpha for noise plot --- plot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plot.py b/plot.py index a5f1b25..8a12445 100644 --- a/plot.py +++ b/plot.py @@ -109,7 +109,7 @@ ax.imshow( origin="lower", cmap=color_map, norm=color_norm, - alpha=0.15 + alpha=0.1 ) # Plot encoded vectors @@ -139,6 +139,7 @@ ax.scatter( c=list(range(len(encoded_vectors))) * noisy_count, cmap=color_map, norm=color_norm, + alpha=0.7, zorder=8 )