Feedback

#1
by merve - opened
scikit-learn org

Hello @MuskanMjn ๐Ÿ’œ
I tried your demo but apparently it repetitively creates plots, can you check this line?

plt.xticks(())
    plt.yticks(())
    title = "Spectral clustering: %s, %.2fs" % (algorithm, (t1 - t0))
    print(title)
    plt.title(title)
    for l in range(n_regions):
        colors = [plt.cm.nipy_spectral((l + 4) / float(n_regions + 4))]
        plt.contour(labels == l, colors=colors)
        # To view individual segments as appear comment in plt.pause(0.5)
    return (plt, "%.3fs" % (t1 - t0))

Also I think it would be better to put the image of coins below the actual demo.

Your need to confirm your account before you can post a new comment.

Sign up or log in to comment