An open API service indexing awesome lists of open source software.

https://github.com/somjit101/dimensionality-reduction-pca-t-sne

Implementation of Principal Component Analysis (PCA) and t-Distributed Stochastic Neighbour Embedding (t-SNE) as Dimensionality Reduction techniques using MNIST Dataset.
https://github.com/somjit101/dimensionality-reduction-pca-t-sne

dimensionality-reduction mnist-dataset mnist-image-dataset pca principal-component-analysis t-sne

Last synced: about 2 months ago
JSON representation

Implementation of Principal Component Analysis (PCA) and t-Distributed Stochastic Neighbour Embedding (t-SNE) as Dimensionality Reduction techniques using MNIST Dataset.

Awesome Lists containing this project

README

        

# Dimensionality-Reduction-PCA-t-SNE
Implementation of Principal Component Analysis (**PCA**) and t-Distributed Stochastic Neighbour Embedding (**t-SNE**) as Dimensionality Reduction techniques using the [**MNIST**](http://yann.lecun.com/exdb/mnist/) Handwritten Digits Dataset.

## Implementations
* PCA - Implementation from scratch and using [Scikit-Learn PCA object](https://scikit-learn.org/stable/modules/decomposition.html#principal-component-analysis-pca).
* t-SNE - Implementation using [Scikit-Learn t-SNE Object](https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html) for visualization of high-dimensional data on 2D.