Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
November 19, 2021 06:49 pm GMT

Demystifying Machine Learning

Overview

Demystifying Machine Learning refers to the series of blogs in which I am going to explain the different algorithms of Machine Learning with behind the scenes mathematics and code implementation from scratch. This is an introductory article for the entire series about what the audience can expect, what are Algorithms we are going to cover and what prerequisites you need to fulfil in order to get the most out of this series.

Prerequisites

There are a few things you need to be comfortable with so that you can get the best out of the articles.

  • Working knowledge of Python and OOP concepts. It'll be great if you already worked with Numpy before.
  • Basic mathematical concepts like Linear Algebra, Calculus and probability will be needed.

Don't worry, if you're not a pro in maths. It's going to be a beginner-friendly introduction to all algorithms and mathematics with explaining every concept in brief.

Algorithms to cover

Below is the list of all the algorithms we are going to cover in this series. The main focus of this series is going to be on Supervised and Unsupervised algorithms.

Deep Learning is a subset of Machine Learning, so we will also be dealing with Neural Networks from scratch, but just to keep content consistent, advanced stuff like CNNs, sequence models, etc are kept out of the scope for this series.

  1. Linear Regression :
    1. Linear Regression using normal equation and regularization
    2. Linear Regression using gradient descent and regularization
  2. Logistic Regression with regularization
  3. Support Vector Machines (SVM)
  4. Neural Networks :
    1. Shallow Neural Networks
    2. Deep Neural Networks
  5. K-Means Clustering
  6. Dimensionality Reduction (P.C.A)
  7. Anomaly Detection

And the best part, we're not just going to understand the algorithm and implement it with Python. In the end or in middle, we'll be going to make our own Python package including classes of the algorithms we implemented and later on publish it on PIP so that you can pip install <package> it whenever you want. (Just for fun )

The best route

Articles are going to be long and comprehensive with loads of mathematical notations and code implementations, so it'll be obvious not to hurry just to finish an article within a specific reading time. Take your time, do google search whenever required, make hand notes and understand what the code is actually doing.

If feeling overwhelmed adopt the policy of "1 algorithm a week". This series is designed in such a way that you get to know your algorithm by asking how it's working and why it's working. A good practice is NOT to skip lines and jump to some random section. If get stuck somewhere or you got any other doubts, feel free to contact me via my socials.

All code implementations will be pushed to a GitHub repository whose link will be shared in the respective algorithm's article, so that you can also contribute to it, if you got something interesting about that code implementation.

Conclusion

This is all to this introductory article. Nothing better than ending your week by learning a new ML algorithm . So make sure to follow me on Twitter for updates on newly published articles. See you in the next week with Linear Regression, till then enjoy and have a nice day


Original Link: https://dev.to/_s_w_a_y_a_m_/demystifying-machine-learning-2mc0

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To