- The Data Science Workshop
- Anthony So Thomas V. Joseph Robert Thas John Andrew Worsley Dr. Samuel Asare
- 294字
- 2021-06-11 18:27:22
Introduction
In previous chapters, where an introduction to machine learning was covered, you were introduced to two broad categories of machine learning; supervised learning and unsupervised learning. Supervised learning can be further pided into two types of problem cases, regression and classification. In the last chapter, we covered regression problems. In this chapter, we will peek into the world of classification problems.
Take a look at the following Figure 3.1:

Figure 3.1: Overview of machine learning algorithms
Classification problems are the most prevalent use cases you will encounter in the real world. Unlike regression problems, where a real numbered value is predicted, classification problems deal with associating an example to a category. Classification use cases will take forms such as the following:
- Predicting whether a customer will buy the recommended product
- Identifying whether a credit transaction is fraudulent
- Determining whether a patient has a disease
- Analyzing images of animals and predicting whether the image is of a dog, cat, or panda
- Analyzing text reviews and capturing the underlying emotion such as happiness, anger, sorrow, or sarcasm
If you observe the preceding examples, there is a subtle difference between the first three and the last two. The first three revolve around binary decisions:
- Customers can either buy the product or not.
- Credit card transactions can be fraudulent or legitimate.
- Patients can be diagnosed as positive or negative for a disease.
Use cases that align with the preceding three genres where a binary decision is made are called binary classification problems. Unlike the first three, the last two associate an example with multiple classes or categories. Such problems are called multiclass classification problems. This chapter will deal with binary classification problems. Multiclass classification will be covered next in Chapter 4, Multiclass Classification with RandomForest.
- 少兒人工智能趣味入門:Scratch 3.0動畫與游戲編程
- 大學計算機基礎(第三版)
- Drupal 8 Blueprints
- Building a Game with Unity and Blender
- Julia機器學習核心編程:人人可用的高性能科學計算
- 云原生Spring實戰
- VMware虛擬化技術
- Java EE核心技術與應用
- 新一代SDN:VMware NSX 網絡原理與實踐
- OpenCV 3 Blueprints
- HTML5+CSS3+jQuery Mobile APP與移動網站設計從入門到精通
- .NET 4.0面向對象編程漫談:應用篇
- TypeScript全棧開發
- Beginning PHP
- C/C++代碼調試的藝術