美文网首页
监督学习

监督学习

作者: 刷刷人工智能 | 来源:发表于2016-12-19 17:10 被阅读12次

Supervised Learning

In supervised learning, we are given a data set and already know what our correct output should look like, having the idea that there is a relationship between the input and the output.

Supervised learning problems are categorized into "regression" and "classification" problems. In a regression problem, we are trying to predict results within a continuous output, meaning that we are trying to map input variables to some continuous function. In a classification problem, we are instead trying to predict results in a discrete output. In other words, we are trying to map input variables into discrete categories.

Example 1:

Given data about the size of houses on the real estate market, try to predict their price. Price as a function of size is a continuous output, so this is a regression problem.

We could turn this example into a classification problem by instead making our output about whether the house "sells for more or less than the asking price." Here we are classifying the houses based on price into two discrete categories.

Example 2:

(a) Regression - Given a picture of a person, we have to predict their age on the basis of the given picture

(b) Classification - Given a patient with a tumor, we have to predict whether the tumor is malignant or benign.

相关文章

  • 11.25 统计学习方法

    1.2监督学习 统计学习包括监督学习,非监督学习,半监督学习及强化学习。 监督学习(supervised lear...

  • 监督学习——学习笔记

    前言 统计学习包括监督学习、非监督学习、半监督学习及强化学习。监督学习 (supervised learning)...

  • K-Means聚类算法

    机器学习的算法主要分为监督学习和无监督学习监督学习。 监督学习(supervised learning),利用样本...

  • 统计学习

    统计学习 统计学习包括监督学习,非监督学习,半监督学习以及强化学习。 监督学习 监督学习的任务是学习一个模型,使模...

  • 统计学习方法概论

    这部分主要了解关于统计学习的一些重要概念:统计学习包括:监督学习、半监督学习、非监督学习、强化学习。监督学习:监督...

  • Types of Machine Learning: Super

    1. 监督学习 or 无监督学习 2. 监督学习 2.1 分类 2.2 回归 2.3 监督学习:分类 & 回归...

  • ml chapter1机器学习的分类

    1,监督学习:数据与标签的2,非监督学习:只有数据没有标签3,半监督学习:监督学习+半监督学习4,强化学习:训练中...

  • 机器学习分类

    机器学习通常分为四类 监督学习 无监督学习 半监督学习 强化学习 监督学习 监督学习是从标记的训练数据来推断一个功...

  • 机器学习的分类

    分类: 目前机器学习主流分为:监督学习,无监督学习,强化学习。 监督学习: 监督学习可分为“回归”和“分类”问题。...

  • 分类

    机器学习方法:监督学习, 半监督学习,无监督学习,强化学习。 监督学习:判别模型,生成模型。 判别模型:条件随机场...

网友评论

      本文标题:监督学习

      本文链接:https://www.haomeiwen.com/subject/vdmtvttx.html