zoukankan      html  css  js  c++  java
  • 【转】LibLinear核心算法学习

    最优化问题分类:

    L2-regularized L1-Loss SVM: 二阶正则化一阶损失函数SVM

    L2-regularized L2-Loss SVM: 二阶正则化二阶损失函数SVM

    L2-regularized Logistic Regression:二阶正则化逻辑回归SVM

    L1-regularized L2-loss Support Vector Classification: 一阶正则化二阶损失函数SVC

    L1-regularized Logistic Regression:一阶正则化逻辑回归

    问题求解:

    1. L2-regularized L1- and L2-loss SVM (Solving Dual) 

    参考论文:

    1.1  A Dual Coordinate Descent Method for Large-scale Linear SVM (Dual)

    SVMperf解决了L1-Loss SVM

    2. L2-regularized Logistic Regression (Solving Primal) 

    参考论文:

    2.1 Trust region Newton method for large-scale logistic regression

    http://www.csie.ntu.edu.tw/~cjlin/papers/logistic.pdf

    3. L2-regularized L2-loss SVM (Solving Primal) 

    参考论文:

    3.1 LIBLINEAR: A Library for Large Linear Classification

    3.2 Coordinate descent method for large-scale L2-loss linear SVM

    http://www.csie.ntu.edu.tw/~cjlin/papers/cdl2.pdf  解决了L2-Loss SVM(Primal).

     

    4. Multi-class SVM by Crammer and Singer 

    参考论文:

    4.1 On the learnability and design of output codes for multiclass problems

    4.2 LIBLINEAR: A Library for Large Linear Classification

    5. L1-regularized L2-loss Support Vector Machines 

    参考论文:

    5.1 LIBLINEAR: A Library for Large Linear Classification

    6. L1-regularized Logistic Regression

    参考论文:

    6.1 LIBLINEAR: A Library for Large Linear Classification

  • 相关阅读:
    JS函数的定义与调用方法
    一次完整的浏览器请求流程
    【前端安全】JavaScript防http劫持与XSS
    深入理解display属性
    前端开发人员需要了解的CSS原理
    第 10 章 文件系统及实现
    第 9 章 虚拟内存管理
    第 8 章 内存管理策略
    第 7 章 死锁
    第 6 章 同步
  • 原文地址:https://www.cnblogs.com/parapax/p/3474776.html
Copyright © 2011-2022 走看看