Heartbeat

Comet is a machine learning platform helping data scientists, ML engineers, and deep learning engineers build better models faster

Follow publication

Understanding the Mathematics behind Principal Component Analysis

Nikita Sharma
Heartbeat
Published in
8 min readFeb 13, 2020

--

What is dimensionality reduction?

Disadvantages of having a large feature space

Subscribe to Deep Learning Weekly and join more than 14,000 of your peers. Weekly access to the latest deep learning industry news, research, code libraries, tutorials, and much more.

PCA Algorithm

Steps involved in PCA

What are principal components?

Important points to note

Implementing PCA in scikit-learn

>>> import numpy as np
>>> from sklearn.decomposition import PCA
>>> X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])
>>> pca = PCA(n_components=2)
>>> pca.fit(X)
PCA(n_components=2)
>>> print(pca.explained_variance_ratio_)
[0.9924... 0.0075...]
>>> print(pca.singular_values_)
[6.30061... 0.54980...]

Why is standard scaling required before calculating a covariance matrix?

How is PCA different from linear regression?

Advantages of PCA

Disadvantages of PCA

How to prepare data for PCA?

Sources to get started with PCA

Conclusion

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

No responses yet

Write a response