Posts

Showing posts from October, 2020

Types of Machine Learning

In the previous post, we looked at what is meant by Machine Learning and now we will take a look at the types of Machine Learning. Machine Learning is basically of 3 types : Supervised Machine Learning Unsupervised Machine Learning Reinforcement Machine Learning Supervised Machine Learning: The meaning of the word Supervised is any task or activity which is done under the observation of someone.  In Supervised machine learning the same thing happens, we provide the machine learning model with some example data and train the model based on these examples.  When training is completed, our model can easily predict the new data which is never seen by the model. For example: When detecting whether an email is spam or not, we can provide the model sample data which tells the model the type of emails and whether they are spam or not. So when a new email is introduced to the model for classification, it looks at the previous learned examples and mark the email as spam or not. The most...