- Machine Learning for OpenCV
- Michael Beyeler
- 327字
- 2021-07-02 19:47:15
Problems that machine learning can solve
Most machine learning problems belong to one of the following three main categories:
- In supervised learning, each data point is labeled or associated with a category or value of interest (Chapter 3, First Steps in Supervised Learning). An example of a categorical label is assigning an image as either a cat or dog. An example of a value label is the sale price associated with a used car. The goal of supervised learning is to study many labeled examples like these (called training data) in order to make predictions about future data points (called test data). These predictions come in two flavors, such as identifying new photos with the correct animal (called a classification problem) or assigning accurate sale prices to other used cars (called a regression problem). Don't worry if this seems a little over your head for now--we will have the entirety of the book to nail down the details.
- In unsupervised learning, data points have no labels associated with them (Chapter 8, Discovering Hidden Structures with Unsupervised Learning). Instead, the goal of an unsupervised learning algorithm is to organize the data in some way or to describe its structure. This can mean grouping them into clusters or finding different ways of looking at complex data so that they appear simpler.
- In reinforcement learning, the algorithm gets to choose an action in response to each data point. It is a common approach in robotics, where the set of sensor readings at one point in time is a data point and the algorithm must choose the robot's next action. It's also a natural fit for Internet of Things applications, where the learning algorithm receives a reward signal at a short time into the future, indicating how good the decision was. Based on this, the algorithm modifies its strategy in order to achieve the highest reward.
These three main categories are illustrated in the following figure:

Main machine learning categories
推薦閱讀
- SQL Server 從入門到項目實踐(超值版)
- Mastering NetBeans
- 零基礎搭建量化投資系統:以Python為工具
- ASP.NET MVC4框架揭秘
- C++面向對象程序設計(微課版)
- Getting Started with CreateJS
- Web Development with Django Cookbook
- MATLAB 2020 從入門到精通
- Mastering LibGDX Game Development
- C語言程序設計案例式教程
- C語言程序設計學習指導與習題解答
- Android開發案例教程與項目實戰(在線實驗+在線自測)
- HTML5從入門到精通(第4版)
- Service Mesh實戰:基于Linkerd和Kubernetes的微服務實踐
- 速學Python:程序設計從入門到進階