What supervised and unsupervised machine learning?

Garima Dhakal
Garima Dhakal

Posted On: May 13, 2024

 

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.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Basic Machine Learning Interview Questions

    What is machine learning?

    Machine learning harnesses algorithms and data to accomplish tasks, imbuing systems with the capacity to learn from data. Sophisticated algorithms facilitate the construction of mathematical models, e..

    Basic Machine Learning Interview Questions

    What is ROC curve?

    ROC curve visualizes classifier's ability to distinguish classes via TPR and FPR, crucial for evaluating model performance...

    Basic Machine Learning Interview Questions

    What is the difference between classification and regression?

    Regression predicts continuous outputs, while classification categorizes data based on similarity. Examples: Linear regression, Naive Bayes classifier...