Skip to content

Commit

Permalink
further optimize parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
wolf109909 committed Nov 13, 2023
1 parent d1d61f6 commit 2153a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions NorthstarDLL/scriptsvm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,11 @@ ADD_SQFUNC(
param.svm_type = C_SVC;
param.kernel_type = RBF;
param.degree = 3;
param.gamma = 0.5;
param.gamma = 1.0/3;
param.coef0 = 0;
param.nu = 0.5;
param.cache_size = 100;
param.C = 100;
param.C = 1000;
param.eps = 1e-3;
param.p = 0.1;
param.shrinking = 1;
Expand Down

0 comments on commit 2153a14

Please sign in to comment.