latentplot

Python module to produce an image plot of latent spaces.


License
MIT
Install
pip install latentplot==0.0.2

Documentation

Description

Python package to plot the latent space of a set of images with different methods.

Install with pip

$ python3 -m pip install latentplot --user

Install from source

$ git clone https://github.com/luiscarlosgph/latentplot.git
$ cd latentplot
$ python3 setup.py install --user

Exemplary code snippet

# List of BGR images of shape (H, W, 3)
images = [ ... ]           

# List of vectors of shape (D,), where D is the vector dimension
feature_vectors = [ ... ]  

# List of integer class labels
labels = [ ... ]           

# Produce a BGR image containing a 2D plot of the latent space with t-SNE
plotter = latentplot.Plotter(method='tsne')  # You can use either 'pca', 'tsne' or 'umap'                              
im_tsne = plotter.plot(images, feature_vectors, labels)  # Providing labels is optional

The latentplot.Plotter constructor parameters are:

Parameter name Description
method Method used to reduce the feature vectors to a 2D space. Available options: pca, tsne, umap.
width Desired output image width. Default is 15360 pixels (16K).
height Desired output image height. Default is 8640 pixels (16K).
dpi DPI for the output image. Default is 300.
cell_factor Proportion of the reduced latent space that each cell will occupy. Default is 0.01.
dark_mode Set it to False to have a white background with black font. Default is True.
hide_axes Hide axes, ticks and marks. Default is True.
**kwargs The rest of the arguments you pass will be forwarded to the dimensionality reduction method.

Exemplary results

  • CIFAR-10: the size of the images in this dataset is 32x32 pixels. The colour of the rectangle around each image indicates the class label of the image. The colour for each class is randomly chosen in every run.
    • PCA:

      CIFAR-10 PCA
    • t-SNE:

      CIFAR-10 t-SNE
    • UMAP:

      CIFAR-10 UMAP

Notes on dimensionality reduction methods

Author

Luis Carlos Garcia Peraza Herrera (luiscarlos.gph@gmail.com), 2023.

License

This code repository is shared under an MIT license.