Posted On: Apr 01, 2020
Supervised and unsupervised are the two types of Machine learning algorithms available.
In the supervised type, the algorithms are applied to the known labeled data to formulate a model. Labeled data means the data is tagged. With this data, the algorithm creates a model that is then applied to unknown data to predict its outcome or tag it. Linear regression is a good example of supervised learning.
In the unsupervised type, the algorithm is applied to the unlabeled data. The data neither is classified nor labeled, but the unsupervised algorithm is used to find the hidden structure with the unlabeled data. K-means clustering algorithm is a good example of this type.
Never Miss an Articles from us.
Machine learning is the use of algorithms and data to perform specific tasks. ML is the process of giving the system the ability to learn from data using certain sophisticated algorithms. With the alg...
ROC curve is a graphical plot to illustrate the ability of a classifier system. Basically, this curve tells you how much a binary classifier system is capable of distinguishing between classes. This c...
Regression is the process of estimating the mapping function (f) given the input value (x) to the continuous output value (y). It is used to predict a value given the data. Here, labeled data is used ...