Basic concepts and functions of supervised learning and unsupervised learning-machine learning knowledge points

Supervised learning and unsupervised learning are the two most basic categories in machine learning. The main difference between them is whether they need labeled data as training samples.

What is supervised learning and unsupervised learning?

Supervised learning refers to using labeled data (often called training data) as input to train a model to learn the relationship between input and output. After the model is learned, it can be used to predict the output of new, unseen data. The goal of this style of learning is to find a function that maps input data to output data. Examples of supervised learning include tasks such as classification, regression, sequence labeling, etc.

Unsupervised learning refers to learning a model from unlabeled data that tries to discover the structure and patterns inherent in the data, rather than predicting output variables. The goal of unsupervised learning is to discover similarities or associations between data and classify them into a class or extract features of the data. Examples of unsupervised learning include tasks such as clustering, dimensionality reduction, and anomaly detection.

Supervised learning and unsupervised learning have different application scenarios and functions:

  • Supervised learning is usually applied when the output variable is known, such as classification and regression problems. Its goal is to predict new outputs by learning the relationship between known inputs and outputs.
  • Unsupervised learning is suitable for unlabeled datasets, such as clustering and dimensionality reduction problems. Its goal is to discover useful patterns and structures from data for further analysis and processing.

In practical applications, supervised learning and unsupervised learning usually need to cooperate with each other, such as using unsupervised learning methods for data preprocessing and feature extraction, and then using supervised learning methods for classification or regression tasks.

Share some of the artificial intelligence learning materials I have compiled for you for free. It has been compiled for a long time and is very comprehensive. Including some artificial intelligence basic introductory videos + AI common framework practical videos, computer vision, machine learning, image recognition, NLP, OpenCV, YOLO, pytorch, deep learning and neural network and other videos, courseware source code, well-known domestic and foreign elite resources, AI popular Papers, etc.

The following are some screenshots, click on the business card at the end of the article to follow my official account [AI Technology Planet] and send the password 321 to receive it (must send the password 321)

Table of contents

1. AI Free Video Courses and Projects

2. Artificial intelligence must-read books

3. Collection of Papers on Artificial Intelligence

4. Machine Learning + Computer Vision Basic Algorithm Tutorial

 Five, deep learning machine learning cheat sheet (a total of 26)

To learn artificial intelligence well, you need to read more books, do more hands-on work, and practice more. If you want to improve your level, you must learn to calm down and learn systematically slowly, so that you can gain something in the end.

Click on the business card below, scan the QR code to follow the official account [AI Technology Planet] and send the code 321 to receive the information in the article for free.

Guess you like

Origin blog.csdn.net/gp16674213804/article/details/129447164