From 9b011d25bb489f8c855bf84ea3cf0bb9129e39fb Mon Sep 17 00:00:00 2001 From: Charchit Dhawan <30744323+charchitd@users.noreply.github.com> Date: Thu, 1 Oct 2020 20:12:23 +0530 Subject: [PATCH] Add Learning material --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 001b511..3663df8 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,10 @@ _For Octave/MatLab version of this repository please check [machine-learning-oct The purpose of this repository is _not_ to implement machine learning algorithms by using 3rd party library one-liners _but_ rather to practice implementing these algorithms from scratch and get better understanding of the mathematics behind each algorithm. That's why all algorithms implementations are called "homemade" and not intended to be used for production. +## For beginner's Learning + +[Download the Machine Learning Learning Material](https://drive.google.com/file/d/1nIfronvk1Izdk9OUIXMMHwYmy69_n-eS/view?usp=sharing) + ## Supervised Learning In supervised learning we have a set of training data as an input and a set of labels or "correct answers" for each training set as an output. Then we're training our model (machine learning algorithm parameters) to map the input to the output correctly (to do correct prediction). The ultimate purpose is to find such model parameters that will successfully continue correct _input→output_ mapping (predictions) even for new input examples.