前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Machine Learning Introduction

Machine Learning Introduction

作者头像
赵化冰
发布2022-08-01 12:32:06
4000
发布2022-08-01 12:32:06
举报
文章被收录于专栏:赵化冰的技术博客

What is machine learning?

Two definitions of machine learning are offered.

Arthur Samuel version: A field of study that gives computers the ability to learn without being explicitly programmed.

Tom Mitchell version: A computer program is said to learn from experience E with respect to some task T and some performance measure P, if its performance on T, as measured by P, improves with experience E.

Example: playing checkers.

E = the experience of playing many games of checkers

T = the task of playing checkers.

P = the probability that the program will win the next game.

Machine learning algorithms

In general, any machine learning problem can be assigned to one of two broad classifications:

  • Supervised learning
  • Unsupervised learning

There are also some others: Reinforcement learning, Recommender system

Supervised learning

Supervised learning is the machine learning task of learning a function that maps an input to an output based on example input-output pairs. It infers a function from labeled training data consisting of a set of training examples, for every example in the training data set, the correct answer is already given.

There are two types of supervised learning problems:

Regression problem

In a regression problem, the supervised learning algorithm is trying to predict results within a continuous output, meaning that it is trying to map input variables to some continuous function.

Example

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.

House Price Prediction

Classification problem

In a classification problem, the supervised learning algorithm is instead trying to predict results within a discrete output, meaning that it is trying to map input variables to discrete categories.

Example

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

Breast cancer prediction with one feature ![](/img/2018-12-24-machine-learningp-introduction/classification-problem-breast-cancer-two-features.png) Breast cancer prediction with two features

Unsupervised learning

TBC

Reference

Free online course offered by Stanford: https://www.coursera.org/learn/machine-learning


本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • What is machine learning?
  • Machine learning algorithms
    • Supervised learning
      • Regression problem
      • Classification problem
    • Unsupervised learning
    • Reference
    领券
    问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档