Machine Learning
Lecture Series 02
1.0.0. Introduction to Machine Learning
Recap on lecture 01:
We discussed the definition of machine learning, its need and importance, the problems to tackle while practicing Machine Learning. Similarly, we discussed one of the models under machine Learning viz. Linear Regression Model.
Continuing on lecture 02:
Now that we have discussed a model under machine learning, let's start formalizing few things and terms. There are 3 types of learning or ways to train a machine.
1.0.1. Supervised Learning:
Supervised Learning is defined as a sub-category of machine learning where the algorithm is trained based on the labeled & classified datasets. To give you intuitive idea, with each data-point, we feed its outcome to train.
As input is fed into the model, it adjusts its weights until the model has been fitted appropriately, which occurs as part of the cross-validation process. Linear regression model is an example of supervised learning.
1.0.2. Unsupervised Learning:
Unsupervised Learning is defined as a sub-category of machine learning where the algorithm is trained based on the classified data. To give you intuitive idea, with each data-point, we expect the model to give an output and keep getting better.
1.0.3. Reinforcement Learning:
As the name suggests, in this sub-category, we don't feed any data but we let the model to explore and then with appropriate datasets, exploit.
In reinforcement learning, its a endless cycle of exploring and exploiting. For any unseen data, model explore and for any known data, it exploits the known pre-information or weight of the data.
Comments
Post a Comment