You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been crossvalidating SVOREX with a big set of parameters. At some point (i.e. with a specific combination of parameters detailed below), SVOREX has returned a segmentation fault with the following error description:
Warning: KKT conditions are violated on bias!!! -0.101231 with C=1.000 K=0.001 Segmentation Fault
Up to my knowledge, this comes from the following lines, in the smo_routine.c (included in SVOREX folder):
if (settings->bmu_low[loop-1] - settings->bmu_up[loop-1]>TOL){
printf("Warning: KKT conditions are violated on bias!!! %f with C=%.3f K=%.3f\r\n",
settings->bmu_low[loop-1] + settings->bmu_up[loop-1], VC, KAPPA);
exit(1);
}
In my case, by removing the exit(1); line, the code works successfully, however, I could be omitting any criterion that must be satisfied.
The dataset (patterns and labels of both train and test) is attached to this issue. The algorithm is SVOREX, and the parameter combination is: C=1.000 -- K=0.001.
First of all, I'm running
ORCA
onMatlab R2018a
.I've been crossvalidating SVOREX with a big set of parameters. At some point (i.e. with a specific combination of parameters detailed below), SVOREX has returned a segmentation fault with the following error description:
Warning: KKT conditions are violated on bias!!! -0.101231 with C=1.000 K=0.001 Segmentation Fault
Up to my knowledge, this comes from the following lines, in the
smo_routine.c
(included in SVOREX folder):In my case, by removing the
exit(1);
line, the code works successfully, however, I could be omitting any criterion that must be satisfied.The dataset (patterns and labels of both train and test) is attached to this issue. The algorithm is
SVOREX
, and the parameter combination is:C=1.000 -- K=0.001
.Dataset.zip
The text was updated successfully, but these errors were encountered: