首页 > 系统服务 > 详细

Machine learning(1-Introduction)

时间:2021-06-06 10:03:44      阅读:19      评论:0      收藏:0      [点我收藏+]

1、What is machine learning

  • Field of study that gives computers the ability to learn without being explicitly programmed

  • 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

  • 技术分享图片

2、Supervised learning

  • One example :Housing price prediction

技术分享图片

  • It refers to the fact that we give the algorithm a data set in which the ‘‘right answers‘‘ were given. (also called a regression problem 回归问题... Regression-> continuous valued output )

  • Just to produce more ‘‘right answers‘‘

  • The other example : Breast cancer

技术分享图片

  • It refers to the fact that we give the algorithm to predict discrete set of output (Classification-> discrete valued output[0 or 1] 分类问题)
  • A learning algorithm can deal with not two or three features, but an infinite number of features
  • 技术分享图片

3、Unsupervised learning

  • We just tell the algorithm that here is a bunch of data ,but we don‘t know what is in this data,who is in what type and what the different types of this data . But the algorithm can automatically find the structure of this data and cluster the individuals into these types that we don‘t know in advance.(There is no "right answers" for machine)
  • Application:

技术分享图片

  • A example: Cocktail party problem algorithm:

     [W,s, v]= svd((repmat(sum(x .* x, 1), size (x, 1), 1).* x) *x‘);
    
  • 技术分享图片

Machine learning(1-Introduction)

原文:https://www.cnblogs.com/wangzheming35/p/14854543.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!