Decrease alpha for noise plot

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

View File

@ -109,7 +109,7 @@ ax.imshow(
origin="lower", origin="lower",
cmap=color_map, cmap=color_map,
norm=color_norm, norm=color_norm,
alpha=0.15 alpha=0.1
) )
# Plot encoded vectors # Plot encoded vectors
@ -139,6 +139,7 @@ ax.scatter(
c=list(range(len(encoded_vectors))) * noisy_count, c=list(range(len(encoded_vectors))) * noisy_count,
cmap=color_map, cmap=color_map,
norm=color_norm, norm=color_norm,
alpha=0.7,
zorder=8 zorder=8
) )