机器学习模型算法 List

作者: 不会停的蜗牛 | 来源:发表于2019-01-13 23:50 被阅读82次

Top 13 machine learning algorithm

Linear Regression

Logistic Regression

Support Vector Machines

Random Forest

Naïve Bayes Classification

Ordinary Least Square Regression

K-means

Ensemble Methods

Apriori Algorithm

Principal Component Analysis

Singular Value Decomposition

Reinforcement or Semi-Supervised Machine Learning

Independent Component Analysis


更具体一些

回归

Linear Regression

正则化

Ridge Regression

Least Absolute Shrinkage and Selection Operator (LASSO)

Elastic Net

Least-Angle Regression (LARS)

分类

Logistic Regression

决策树:

Classification and Regression Tree (CART)

Iterative Dichotomiser 3 (ID3)

C4.5 and C5.0 (different versions of a powerful approach)

Chi-squared Automatic Interaction Detection (CHAID)

Decision Stump

M5

Conditional Decision Trees

SVM

Bayesian

Naive Bayes

Gaussian Naive Bayes

Multinomial Naive Bayes

Averaged One-Dependence Estimators (AODE)

Bayesian Belief Network (BBN)

Bayesian Network (BN)

kNN

聚类

k-Means

k-Medians

Expectation Maximisation (EM)

Hierarchical Clustering

Random Forest

降维

Principal Component Analysis (PCA)

Principal Component Regression (PCR)

Partial Least Squares Regression (PLSR)

Sammon Mapping

Multidimensional Scaling (MDS)

Projection Pursuit

Linear Discriminant Analysis (LDA)

Mixture Discriminant Analysis (MDA)

Quadratic Discriminant Analysis (QDA)

Flexible Discriminant Analysis (FDA)

Gradient Boosting algorithms:

GBM

XGBoost

LightGBM

CatBoost


Deep learning with NLP

word2vec:

CBOW

Skip gram

基于层级 softmax 的 word2vec

基于 负采样 的 word2vec

GloVe

RNN

LSTM

seq2seq

Attention

CNN

Transformer

Tree RNN


Deep learning with CV

CNN

AlexNet

VGG-16

Google Inception-v3

Microsoft ResNet-50

SqueezeNet

Spatial transformer

DenseNet

Faster R-CNN

GAN:

vanilla GAN

conditional GAN

InfoGAN

BigGAN

相关文章

  • 机器学习模型算法 List

    Top 13 machine learning algorithm Linear Regression Logis...

  • 深度学习笔记

    构建机器学习算法 数据集 代价函数 优化算法 模型

  • 数据挖掘算法

    机器学习导论 机器学习的方法是基于数据产生的"模型"(model)的算法,也称"学习算法"(learning al...

  • 【百面机器学习】优化算法

    机器学习算法 = 模型表征 + 模型评估 + 优化算法。不同的优化算法对应的模型表征和评估指标分别为线性分类模型和...

  • iOS 机器学习(Core ML) -- (一)集成已有模型

    一、机器学习 机器学习就是通过对数据进行分析,来改进优化算法。机器学习有三个要数:数据、学习算法、模型。 数据:机...

  • 机器学习要素

    机器学习(统计学习),由多个要素组成,即模型、策略、算法,大部分机器学习都包含这三个维度,树模型没有算法维度。 模...

  • 客户分群-聚类算法

    机器学习算法分类 有监督学习 有训练样本 分类模型 预测模型 无监督学习 无训练样本 关联模型 聚类模型 聚类算法...

  • Spark机器学习笔记

    Spark机器学习笔记 机器学习 机器学习是数据通过算法构建出模型并对模型进行评估,评估的性能如果达到要求就拿这个...

  • 1 Introduction and Motivation

    1 什么是机器学习 机器学习:能从数据中自动提取有价值信息的算法设计。三要素:数据、模型、学习。模型(model)...

  • C#机器学习之判断日报是否合格

    简单来说机器学习的核心步骤在于“获取学习数据;选择机器算法;定型模型;评估模型,预测模型结果”,下面本人就以判断日...

网友评论

    本文标题:机器学习模型算法 List

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