- Machine Learning with scikit:learn Quick Start Guide
- Kevin Jolly
- 194字
- 2021-06-24 18:15:52
Supervised learning
Supervised learning is a form of machine learning in which our data comes with a set of labels or a target variable that is numeric. These labels/categories usually belong to one feature/attribute, which is commonly known as the target variable. For instance, each row of your data could either belong to the category of Healthy or Not Healthy.
Given a set of features such as weight, blood sugar levels, and age, we can use the supervised machine learning algorithm to predict whether the person is healthy or not.
In the following simple mathematical expression, S is the supervised learning algorithm, X is the set of input features, such as weight and age, and Y is the target variable with the labels Healthy or Not Healthy:

Although supervised machine learning is the most common type of machine learning that is implemented with scikit-learn and in the industry, most datasets typically do not come with predefined labels. Unsupervised learning algorithms are first used to cluster data without labels into distinct groups to which we can then assign labels. This is discussed in detail in the following section.
- 輕松學C#
- TestStand工業自動化測試管理(典藏版)
- 程序設計缺陷分析與實踐
- 自動檢測與轉換技術
- iClone 4.31 3D Animation Beginner's Guide
- 數據庫原理與應用技術
- 大型數據庫管理系統技術、應用與實例分析:SQL Server 2005
- Photoshop CS3圖層、通道、蒙版深度剖析寶典
- Grome Terrain Modeling with Ogre3D,UDK,and Unity3D
- 在實戰中成長:Windows Forms開發之路
- 多媒體制作與應用
- 生物3D打印:從醫療輔具制造到細胞打印
- Java組件設計
- Cloudera Hadoop大數據平臺實戰指南
- Apache Spark Quick Start Guide