Skip to content

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

License

Notifications You must be signed in to change notification settings

luiscarlosgph/latentplot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

61 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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 feature vectors to produce these plots were extracted with InceptionV3 trained on ImageNet. 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.

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages