您的位置:首页 > 其它

MLlib - Classification and Regression

2015-04-25 16:02 330 查看


MLlib-Classification and Regression

MLlib实现了解决二分类,多分类,回归分析问题的一些常见方法。下表具体展示了针对各个问题实现的一些方法:

Problem TypeSupported Methods
Binary Classificationlinear SVMs, logistic regression, decision trees, random forests, gradient-boosted trees, naive Bayes
Multiclass Classificationdecision trees, random forests, naive Bayes
Regressionlinear least squares, Lasso, ridge regression, decision trees, random forests, gradient-boosted trees, isotonic regression
关于各个方法的原理以及源码实现见:

Linear models

binary classification (SVMs, logistic regression)
linear regression (least squares, Lasso, ridge)

Ensembles Decision trees

random forests
gradient-boosted trees

Naive Bayes
Isotonic regression
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: