Visualizing Data using t-SNE, Laurens van der Maaten and Geoffrey Hinton, 2008Journal of Machine Learning Research, Vol. 9 (Microtome Publishing) - This foundational paper introduces t-SNE, a non-linear dimensionality reduction technique widely used for visualizing high-dimensional data, including latent spaces.
Deep Learning, Ian Goodfellow, Yoshua Bengio, and Aaron Courville, 2016 (MIT Press) - A comprehensive textbook that covers the theoretical foundations of deep learning, including autoencoders and principles related to learning and visualizing latent representations.
sklearn.manifold.TSNE, Scikit-learn developers, 2023 (Scikit-learn) - Official documentation for Scikit-learn's implementation of t-SNE, providing practical details for its application in Python for latent space visualization.
sklearn.decomposition.PCA, Scikit-learn developers, 2023 - Official documentation for Scikit-learn's implementation of Principal Component Analysis, a linear dimensionality reduction method for visualizing high-dimensional latent spaces.
Matplotlib: Visualization with Python, Matplotlib Development Team, 2023 - The official documentation for Matplotlib, an essential Python library for creating static, animated, and interactive visualizations, including 2D and 3D scatter plots for latent spaces.