svm_parameter.java
上传用户:xgw_05
上传日期:2014-12-08
资源大小:2726k
文件大小:1k
源码类别:

.net编程

开发平台:

Java

  1. package libsvm;
  2. public class svm_parameter
  3. {
  4. /* svm_type */
  5. public static final int C_SVC = 0;
  6. public static final int NU_SVC = 1;
  7. public static final int ONE_CLASS = 2;
  8. public static final int EPSILON_SVR = 3;
  9. public static final int NU_SVR = 4;
  10. /* kernel_type */
  11. public static final int LINEAR = 0;
  12. public static final int POLY = 1;
  13. public static final int RBF = 2;
  14. public static final int SIGMOID = 3;
  15. public int svm_type;
  16. public int kernel_type;
  17. public double degree; // for poly
  18. public double gamma; // for poly/rbf/sigmoid
  19. public double coef0; // for poly/sigmoid
  20. // these are for training only
  21. public double cache_size; // in MB
  22. public double eps; // stopping criteria
  23. public double C; // for C_SVC, EPSILON_SVR and NU_SVR
  24. public int nr_weight; // for C_SVC
  25. public int[] weight_label; // for C_SVC
  26. public double[] weight; // for C_SVC
  27. public double nu; // for NU_SVC, ONE_CLASS, and NU_SVR
  28. public double p; // for EPSILON_SVR
  29. public int shrinking; // use the shrinking heuristics
  30. }