Decrease alpha for noise plot
This commit is contained in:
parent
9a87b322d4
commit
04c2938b9e
3
plot.py
3
plot.py
|
@ -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
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue