Linkage

simages allows visualizing the similarity of images in a dataset using simages.linkageplot().

Ordered

Show ordered linkage plot

import simages
from simages import linkageplot
import numpy as np

X = np.random.random((100, 28, 28))
embeddings = simages.EmbeddingExtractor(X, num_channels=1).embeddings

linkageplot(embeddings)
../_images/sphx_glr_plot_linkage_001.png

Unordered

Show unordered linkage plot

linkageplot(embeddings, ordered=False)
../_images/sphx_glr_plot_linkage_002.png

Total running time of the script: ( 0 minutes 8.583 seconds)

Gallery generated by Sphinx-Gallery