machine learning(11) -- classification: multi-class classification

  • Multiclass classification例子:

    • 邮箱的邮件的分类: 工作邮件,私人邮件,朋友的邮件,兴趣爱好的邮件
    • 医学诊断: 没有生病,患有流感,患有普通感冒
    • 天气: 晴天,兩,多云等
  • One-vs-all classfication = one-vs-rest :

每一次将一个class分出来,共构建3个classifiers

hθ(i)(x) = P(y=i|x;θ)    (i=1;2;3)

train a logistic regression classifier hθ(i)(x) for each class i to predict the probability that y=i.

  • 新输入x,如何判断属于哪个类

如有三个类,则x属于3个classifier中使hθ(i)(x)取最大值的那个类(i的取值)

时间: 2024-11-14 02:33:13

machine learning(11) -- classification: multi-class classification的相关文章

Andrew Ng 的 Machine Learning 课程学习 (week4) Multi-class Classification and Neural Networks

这学期一直在跟进 Coursera上的 Machina Learning 公开课, 老师Andrew Ng是coursera的创始人之一,Machine Learning方面的大牛.这门课程对想要了解和初步掌握机器学习的人来说是不二的选择.这门课程涵盖了机器学习的一些基本概念和方法,同时这门课程的编程作业对于掌握这些概念和方法起到了巨大的作用. 课程地址 https://www.coursera.org/learn/machine-learning 笔记主要是简要记录下课程内容,以及MATLAB

machine learning(11) -- classification: advanced optimization

其它的比gradient descent快, 在某些场合得到广泛应用的求cost function的最小值的方法 Conjugate gradient, BFGS,L-BFGS很复杂,可以在不明白详细原理的情况下进行应用. 可以使用Octave和matlab的函数库直接进行应用,这些软件里面的build-in libarary已经很好的实现了这些算法. 当要使用其它的语言来实现这些算法时,如c,c++,Java等,要多试几种实现,因为不同的实现方法在性能上相差很大.

Awesome Machine Learning

Awesome Machine Learning  A curated list of awesome machine learning frameworks, libraries and software (by language). Inspired by awesome-php. If you want to contribute to this list (please do), send me a pull request or contact me @josephmisiti Als

Seven Steps to Success Machine Learning in Practice

Seven Steps to Success Machine Learning in Practice Project failures in IT are all too common. The risks are higher if you are adopting a new technology that is unfamiliar to your organisation. Machine learning has been around for a long time in acad

Attention Please!TWO HUNDREDS OF machine learning turorial summary

Machine Learning The First Column The Second Column Machine Learning 1 从机器学习入手 Machine Learning 2 机器学习很有趣! Machine Learning 3 机器学习规则:ML工程的最佳实践 Machine Learning 4 机器学习速成课程:第一部分 Machine Learning 5 第二部分;伯克利机器学习 Machine Learning 6 第三部分;伯克利机器学习 Machine Le

Machine Learning—k-nearest neighbor classification(k近邻分类)

印象笔记同步分享:Machine Learning-k-nearest neighbor classification(k近邻分类)

Machine Learning—Classification and logistic regression

印象笔记同步分享:Machine Learning-Classification and logistic regression

Supervised Machine Learning: A Review of Classification Techniques论文摘要(翻译:Trey;审校:Shooya)

摘要:有监督学习是对一类算法的研究,这类算法从表面实例推断出一般性的假说,得出的假说又可以进一步用来预测未发生的实例.换言之,有监督学习的目标,就是根据预测特征,为分类标签的概率分布建立简洁的模型.得到的分类器会被用于为测试实例贴上分类标签,其中,测试实例的分类特征是已知的,但其分类标签是未知的.本文讨论各种有监督机器学习分类技术.当然,单独一篇文章,无法遍及所有的有监督机器学习分类算法(亦称为归纳分类算法),然而我们希望我们所引用的文献可以覆盖主要的理论主题,为正在有趣的研究方向上进行研究的研

Machine Learning—Naive Bayesian classification(朴素贝叶斯分类)

印象笔记同步分享:Machine Learning-Naive Bayesian classification(朴素贝叶斯分类)