ageron/handson-ml3

[BUG] Ch08 - cmap wrong when plotting LLE figures

stojiljkoff opened this issue · 1 comments

All codes for plotting 'unrolled Swiss Roll' contain wrong cmaps.

Instead of :
cmap = darkerhot
it should be:
cmap = "Blues" #Or any other valid colormap

That issues seems to have been resolved (or was not an issue to start with) as darkerhot is defined
darker_hot = ListedColormap(plt.cm.hot(np.linspace(0, 0.8, 256)))
(in the 9th calculation cell)